Skip to content

Commit

Permalink
make read replicas non multi-az (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
dydxwill authored Mar 13, 2024
1 parent 33479d3 commit 53d4c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indexer/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ resource "aws_db_instance" "read_replica" {
performance_insights_enabled = true
performance_insights_retention_period = 31
auto_minor_version_upgrade = false
multi_az = true
multi_az = false

replicate_source_db = aws_db_instance.main.identifier

Expand All @@ -259,7 +259,7 @@ resource "aws_db_instance" "read_replica_2" {
performance_insights_enabled = true
performance_insights_retention_period = 31
auto_minor_version_upgrade = false
multi_az = true
multi_az = false

replicate_source_db = aws_db_instance.main.identifier

Expand Down

0 comments on commit 53d4c9e

Please sign in to comment.