File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
terraform/modules/sql-to-rds-snapshot Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -5,20 +5,20 @@ resource "aws_db_subnet_group""default"{
55}
66
77resource " 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
2424resource " random_password" " rds_password" {
You can’t perform that action at this time.
0 commit comments