Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jpluta committed Jun 5, 2024
1 parent 6180a48 commit a3c1819
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ resource "aws_db_instance_role_association" "main" {
}

resource "aws_db_instance" "replica" {
count = var.replica_enabled ? 1 : 0
count = var.replica_enabled ? 1 : 0

replicate_source_db = aws_db_instance.main.identifier
instance_class = var.instance_class
availability_zone = var.replica_availability_zone
Expand Down

0 comments on commit a3c1819

Please sign in to comment.