Skip to content

Commit

Permalink
Disable RDS auto minor version upgrades. (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentwschau authored Feb 6, 2024
1 parent 14d8742 commit 1ab0070
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 1ab0070

Please sign in to comment.