From c60eef5d9923481a392e661ca490d491706b27ea Mon Sep 17 00:00:00 2001 From: Marco Acierno Date: Sat, 27 Dec 2025 06:18:45 +0100 Subject: [PATCH] Upgrade Postgres to 18.1 --- infrastructure/applications/database/db.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/applications/database/db.tf b/infrastructure/applications/database/db.tf index add7130acc..73687985ee 100644 --- a/infrastructure/applications/database/db.tf +++ b/infrastructure/applications/database/db.tf @@ -9,7 +9,7 @@ resource "aws_db_instance" "database" { engine = "postgres" identifier = "pythonit-${terraform.workspace}" allow_major_version_upgrade = true - engine_version = "14.17" + engine_version = "18.1" instance_class = "db.t4g.micro" db_name = local.is_prod ? "${local.normalized_workspace}backend" : "pycon" username = "root"