Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use PostgreSQL 14 in DB parameter groups (#707)
Browse files Browse the repository at this point in the history
agarciamontoro authored Mar 14, 2024
1 parent 902ad0d commit 93bb692
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deployment/terraform/assets/bindata.go
2 changes: 1 addition & 1 deletion deployment/terraform/assets/cluster.tf
Original file line number Diff line number Diff line change
@@ -324,7 +324,7 @@ resource "aws_rds_cluster_instance" "cluster_instances" {

resource "aws_db_parameter_group" "db_params_group" {
name = "${var.cluster_name}-db-pg"
family = var.db_instance_engine == "aurora-mysql" ? "aurora-mysql8.0" : "aurora-postgresql12"
family = var.db_instance_engine == "aurora-mysql" ? "aurora-mysql8.0" : "aurora-postgresql14"
dynamic "parameter" {
for_each = var.db_parameters
content {

0 comments on commit 93bb692

Please sign in to comment.