Skip to content

Commit 08a4810

Browse files
authored
Fix/Upgrade RDS instance to support SQL-to-Parquet task (#2627)
* change to larger instance and attach more storage * change to 45 G * formatting * formatting * formatting * formatting
1 parent 4e78f1d commit 08a4810

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ resource "aws_db_subnet_group" "default" {
66

77
resource "aws_db_instance" "ingestion_db" {
88
allocated_storage = 15
9-
max_allocated_storage = 30
9+
max_allocated_storage = 45
1010
engine = "mysql"
1111
engine_version = "8.0"
12-
instance_class = "db.t3.micro"
12+
instance_class = "db.t3.small"
1313
identifier = var.instance_name
1414
db_subnet_group_name = aws_db_subnet_group.default.name
1515
username = "dataplatform"

0 commit comments

Comments
 (0)