From 0795d189dcf5645a4dc439d287999f9c86d0628d Mon Sep 17 00:00:00 2001 From: larisa17 Date: Mon, 30 Sep 2024 16:37:25 +0300 Subject: [PATCH] fix postgresql version --- infra/aws/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/aws/index.ts b/infra/aws/index.ts index d0fdabbcf..b4d0bf68f 100644 --- a/infra/aws/index.ts +++ b/infra/aws/index.ts @@ -1055,7 +1055,7 @@ const redashDb = new aws.rds.Instance( allocatedStorage: 20, maxAllocatedStorage: 30, // maxAllocatedStorage needs to be bigger than allocatedStorage engine: "postgres", - engineVersion: "13.13", + engineVersion: "13.15", instanceClass: "db.t3.micro", dbName: redashDbName, password: redashDbPassword,