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

Upgrade opsuaa rds to 16.1 #1725

Merged
merged 1 commit into from
Aug 13, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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