From 744a7dc58d032930d90c3234fbafbf4bf34e6045 Mon Sep 17 00:00:00 2001 From: bocklag <143764250+bocklag@users.noreply.github.com> Date: Mon, 14 Oct 2024 15:58:01 +0900 Subject: [PATCH] fix(infra): set portgres version to 14 to avoid downgrade errors and ensure latest minor updates (#2169) * fix(infra): set portgres version to 14 to avoid downgrade errors and ensure latest minor updates * fix(infra): set portgres version to 14 to avoid downgrade errors and ensure latest minor updates --- apps/infra/production/storage/database.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/infra/production/storage/database.tf b/apps/infra/production/storage/database.tf index e4b5f261b9..2ed6197673 100644 --- a/apps/infra/production/storage/database.tf +++ b/apps/infra/production/storage/database.tf @@ -71,7 +71,7 @@ resource "random_password" "postgres_password" { resource "aws_db_instance" "postgres" { db_name = "codedang_db" engine = "postgres" - engine_version = "14.10" + engine_version = "14" allocated_storage = 5 instance_class = "db.t4g.small"