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

Fixes cloud-gov/private#945 #1604

Merged
merged 3 commits into from
Feb 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/modules/cloudfoundry/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variable "stack_description" {
}

variable "rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "rds_db_size" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/concourse/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ variable "rds_db_storage_type" {
}

variable "rds_instance_type" {
default = "db.m4.xlarge"
default = "db.m5.xlarge"
}

variable "rds_db_engine_version" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/concourse_v2/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ variable "rds_db_storage_type" {
}

variable "rds_instance_type" {
default = "db.m4.xlarge"
default = "db.m5.xlarge"
}

variable "rds_db_engine_version" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/credhub/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ variable "rds_db_storage_type" {
}

variable "rds_instance_type" {
default = "db.m4.xlarge"
default = "db.m5.xlarge"
}

variable "rds_db_engine_version" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/credhub_v2/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ variable "rds_db_storage_type" {
}

variable "rds_instance_type" {
default = "db.m4.xlarge"
default = "db.m5.xlarge"
}

variable "rds_db_engine_version" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/rds/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ variable "stack_description" {
}

variable "rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "rds_db_size" {
Expand Down
4 changes: 2 additions & 2 deletions terraform/modules/stack/base/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ variable "rds_private_cidr_4" {
}

variable "rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "rds_db_size" {
Expand Down Expand Up @@ -145,7 +145,7 @@ variable "credhub_rds_db_storage_type" {
}

variable "credhub_rds_instance_type" {
default = "db.t2.medium"
default = "db.t3.medium"
}

variable "credhub_rds_db_size" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/stack/spoke/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ variable "rds_private_cidr_4" {
}

variable "rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "rds_db_size" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/stacks/main/domains_broker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ resource "aws_db_instance" "domains_broker" {
db_name = "domains_broker"
storage_type = "gp3"
allocated_storage = 20
instance_class = "db.t2.small"
instance_class = "db.t3.small"
username = var.domains_broker_rds_username
password = var.domains_broker_rds_password
engine = "postgres"
Expand Down
6 changes: 3 additions & 3 deletions terraform/stacks/main/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "rds_password" {
}

variable "rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "cf_rds_password" {
Expand Down Expand Up @@ -108,10 +108,10 @@ variable "parent_stack_name" {
}

variable "domains_broker_rds_version" {
default = "11"
default = "12.17"
}
variable "cf_rds_instance_type" {
default = "db.m4.large"
default = "db.m5.large"
}

variable "cf_as_rds_instance_type" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/stacks/regionalmasterbosh/opsuaa.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module "opsuaa_db" {
source = "../../modules/rds"

stack_description = var.stack_description
rds_instance_type = "db.t2.medium"
rds_instance_type = "db.t3.medium"
rds_db_name = "opsuaa"
rds_username = "opsuaa"
rds_password = var.opsuaa_rds_password
Expand Down
2 changes: 1 addition & 1 deletion terraform/stacks/tooling/opsuaa.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module "opsuaa_db" {
source = "../../modules/rds"

stack_description = var.stack_description
rds_instance_type = "db.t2.medium"
rds_instance_type = "db.t3.medium"
rds_db_name = "opsuaa"
rds_username = "opsuaa"
rds_password = var.opsuaa_rds_password
Expand Down
2 changes: 1 addition & 1 deletion terraform/stacks/tooling/stack.tf
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ module "credhub_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.large"
rds_instance_type = "db.m5.large"
rds_multi_az = var.rds_multi_az
rds_final_snapshot_identifier = "final-snapshot-credhub-tooling-production"
listener_arn = aws_lb_listener.main.arn
Expand Down