Skip to content

Commit

Permalink
BFD-3735: Temporarily ignore version changes to RDS clusters (#2478)
Browse files Browse the repository at this point in the history
  • Loading branch information
malessi authored Nov 4, 2024
1 parent 13c0042 commit d4ac22f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ops/terraform/services/common/aurora-cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ resource "aws_rds_cluster" "aurora_cluster" {
engine = "aurora-postgresql"
engine_mode = "provisioned"
engine_version = "16.2"
apply_immediately = local.rds_apply_immediately

lifecycle {
# TODO: Remove when Postgres upgrade is finished
ignore_changes = [engine_version]
}

apply_immediately = local.rds_apply_immediately

backtrack_window = 0
backup_retention_period = local.rds_backup_retention_period
Expand Down

0 comments on commit d4ac22f

Please sign in to comment.