From 9aeec07ba24428bacdc91493fbc47d2d17ab3fe6 Mon Sep 17 00:00:00 2001 From: Bheesham Persaud Date: Thu, 12 Dec 2024 15:13:39 -0500 Subject: [PATCH] chore Upgrade to Postgres 12.17 (test+prod) Dev is already ahead of the game by being on 16.2: ``` ; kubectl --context iam-dev exec -it dino-park-packs-pg-deployment-56b7dd5b49-gd688 -- postgres --version postgres (PostgreSQL) 16.2 (Debian 16.2-1.pgdg120+2) ``` Jira: IAM-1502 --- terraform/prod/db.tf | 2 +- terraform/test/db.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/prod/db.tf b/terraform/prod/db.tf index 4fbf5bf..242e736 100644 --- a/terraform/prod/db.tf +++ b/terraform/prod/db.tf @@ -4,7 +4,7 @@ resource "aws_db_instance" "dino_park_packs_db" { max_allocated_storage = 100 storage_type = "gp2" engine = "postgres" - engine_version = "11.22" + engine_version = "12.17" instance_class = "db.t3.micro" allow_major_version_upgrade = true username = "dinopark" diff --git a/terraform/test/db.tf b/terraform/test/db.tf index 02d5504..9460d19 100644 --- a/terraform/test/db.tf +++ b/terraform/test/db.tf @@ -4,7 +4,7 @@ resource "aws_db_instance" "dino_park_packs_db" { max_allocated_storage = 100 storage_type = "gp2" engine = "postgres" - engine_version = "11.22" + engine_version = "12.17" instance_class = "db.t3.micro" allow_major_version_upgrade = true username = "dinopark"