Skip to content

Commit 30550c9

Browse files
committed
formatting
1 parent e77211b commit 30550c9

File tree

1 file changed

+12
-12
lines changed
  • terraform/modules/sql-to-rds-snapshot

1 file changed

+12
-12
lines changed

terraform/modules/sql-to-rds-snapshot/30-rds.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ resource "aws_db_subnet_group""default"{
55
}
66

77
resource "aws_db_instance""ingestion_db"{
8-
allocated_storage = 15
9-
max_allocated_storage = 45
10-
engine = "mysql"
11-
engine_version = "8.0"
12-
instance_class = "db.t3.small"
13-
identifier = var.instance_name
14-
db_subnet_group_name = aws_db_subnet_group.default.name
15-
username = "dataplatform"
16-
password = random_password.rds_password.result
17-
skip_final_snapshot = true
8+
allocated_storage = 15
9+
max_allocated_storage = 45
10+
engine = "mysql"
11+
engine_version = "8.0"
12+
instance_class = "db.t3.small"
13+
identifier = var.instance_name
14+
db_subnet_group_name = aws_db_subnet_group.default.name
15+
username = "dataplatform"
16+
password = random_password.rds_password.result
17+
skip_final_snapshot = true
1818
vpc_security_group_ids = [aws_security_group.snapshot_db.id
1919
]
20-
apply_immediately = true
21-
ca_cert_identifier = "rds-ca-rsa2048-g1"
20+
apply_immediately = true
21+
ca_cert_identifier = "rds-ca-rsa2048-g1"
2222
}
2323

2424
resource "random_password""rds_password"{

0 commit comments

Comments
 (0)