From 24b368ae1124d570969221fd2e20442ff188223f Mon Sep 17 00:00:00 2001 From: philmcmahon Date: Fri, 29 Sep 2023 14:51:51 +0100 Subject: [PATCH] Enable major version upgrades --- postgres/cdk/lib/giant.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/postgres/cdk/lib/giant.ts b/postgres/cdk/lib/giant.ts index 4a5af3ac..ee05e550 100644 --- a/postgres/cdk/lib/giant.ts +++ b/postgres/cdk/lib/giant.ts @@ -52,6 +52,7 @@ export class Giant extends GuStack { engine: DatabaseInstanceEngine.postgres({ version: PostgresEngineVersion.VER_15 }), + allowMajorVersionUpgrade: true, allocatedStorage: dbStorage, maxAllocatedStorage: dbStorage + 20, autoMinorVersionUpgrade: true,