Skip to content

Commit

Permalink
Merge pull request #1725 from cloud-gov/opsuaa16
Browse files Browse the repository at this point in the history
Upgrade opsuaa rds to 16.1
  • Loading branch information
cweibel authored Aug 13, 2024
2 parents 6b58480 + 2b50303 commit cb83ab4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,8 @@ jobs:
TF_VAR_rds_parameter_group_family_concourse_staging: "postgres15"
TF_VAR_rds_db_engine_version_concourse_production: "15.5"
TF_VAR_rds_parameter_group_family_concourse_production: "postgres15"
TF_VAR_rds_db_engine_version_opsuaa: "16.1"
TF_VAR_rds_parameter_group_family_opsuaa: "postgres16"
- *notify-slack

- name: apply-tooling
Expand Down
4 changes: 2 additions & 2 deletions terraform/stacks/tooling/opsuaa.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ module "opsuaa_db" {
rds_password = var.opsuaa_rds_password
rds_subnet_group = module.stack.rds_subnet_group
rds_security_groups = [module.stack.rds_postgres_security_group]
rds_db_engine_version = var.rds_db_engine_version
rds_parameter_group_family = var.rds_parameter_group_family
rds_db_engine_version = var.rds_db_engine_version_opsuaa
rds_parameter_group_family = var.rds_parameter_group_family_opsuaa
rds_allow_major_version_upgrade = var.rds_allow_major_version_upgrade
rds_apply_immediately = var.rds_apply_immediately
}
Expand Down
8 changes: 8 additions & 0 deletions terraform/stacks/tooling/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,14 @@ variable "rds_parameter_group_family_concourse_production" {
default = "postgres15"
}

variable "rds_db_engine_version_opsuaa" {
default = "16.1"
}

variable "rds_parameter_group_family_opsuaa" {
default = "postgres16"
}

variable "remote_state_bucket" {
}

Expand Down

0 comments on commit cb83ab4

Please sign in to comment.