Skip to content

Commit

Permalink
Disable RDS auto minor version upgrades.
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau committed Feb 5, 2024
1 parent 14d8742 commit 488579d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions indexer/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ resource "aws_db_instance" "main" {
delete_automated_backups = false
performance_insights_enabled = true
performance_insights_retention_period = 31
auto_minor_version_upgrade = false

tags = {
Name = local.aws_db_instance_main_name
Expand All @@ -222,6 +223,7 @@ resource "aws_db_instance" "read_replica" {
skip_final_snapshot = true
performance_insights_enabled = true
performance_insights_retention_period = 31
auto_minor_version_upgrade = false

replicate_source_db = aws_db_instance.main.identifier

Expand Down

0 comments on commit 488579d

Please sign in to comment.