Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update concourse prod db #1541

Merged
merged 1 commit into from
Sep 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion terraform/stacks/tooling/stack.tf
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ module "concourse_production" {
rds_db_engine_version = var.rds_db_engine_version
rds_apply_immediately = var.rds_apply_immediately
rds_allow_major_version_upgrade = var.rds_allow_major_version_upgrade
rds_instance_type = "db.m4.xlarge"
rds_instance_type = "db.m5.xlarge"
rds_db_size = 400
rds_db_storage_type = "gp3"
rds_db_iops = 12000
rds_multi_az = var.rds_multi_az
rds_final_snapshot_identifier = "final-snapshot-atc-tooling-production"
listener_arn = aws_lb_listener.main.arn
Expand Down
Loading