Skip to content

Commit

Permalink
chore: upgrade DB to postgres 11.16 (#275)
Browse files Browse the repository at this point in the history
Upgrade the DB to 11.16, which has an upgrade path to 14.3.
  • Loading branch information
patheard authored Sep 2, 2022
1 parent 8299e37 commit 782da5f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions terragrunt/aws/api/rds.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "rds" {
source = "github.com/cds-snc/terraform-modules?ref=v0.0.35//rds"
source = "github.com/cds-snc/terraform-modules?ref=v3.0.14//rds"
backup_retention_period = 7
billing_tag_value = var.billing_code
database_name = "scan_files"
Expand All @@ -10,5 +10,8 @@ module "rds" {
username = var.rds_username
password = var.rds_password
vpc_id = module.vpc.vpc_id
engine_version = "11.13"
engine_version = "11.16"

upgrade_immediately = true
allow_major_version_upgrade = true
}

0 comments on commit 782da5f

Please sign in to comment.