From 4ea42052d4f63a488482b204e748fd84476add75 Mon Sep 17 00:00:00 2001 From: larisa17 Date: Thu, 19 Dec 2024 12:00:26 +0200 Subject: [PATCH] update postgresql version --- infra/aws/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infra/aws/index.ts b/infra/aws/index.ts index 762f729c2..dcbb38a53 100644 --- a/infra/aws/index.ts +++ b/infra/aws/index.ts @@ -1112,7 +1112,7 @@ const redashDb = new aws.rds.Instance( allocatedStorage: 20, maxAllocatedStorage: 30, // maxAllocatedStorage needs to be bigger than allocatedStorage engine: "postgres", - engineVersion: stack === "review" ? "16.3" : "13.15", + engineVersion: "16.3", instanceClass: "db.t3.micro", dbName: redashDbName, password: redashDbPassword, @@ -1122,6 +1122,7 @@ const redashDb = new aws.rds.Instance( vpcSecurityGroupIds: [redashDbSecgrp.id], backupRetentionPeriod: 5, performanceInsightsEnabled: true, + applyImmediately: true, tags: { ...defaultTags, Name: `redash-db`,