From d9a085a7fc4c213822d3f5f3b6604b5db126e751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dafydd=20Ll=C5=B7r=20Pearson?= Date: Thu, 18 Apr 2024 09:19:52 +0100 Subject: [PATCH] chore: Rotate db-password (staging) (#3030) --- infrastructure/data/Pulumi.staging.yaml | 4 ++-- infrastructure/data/index.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/infrastructure/data/Pulumi.staging.yaml b/infrastructure/data/Pulumi.staging.yaml index 47871e74bb..42ae957cac 100644 --- a/infrastructure/data/Pulumi.staging.yaml +++ b/infrastructure/data/Pulumi.staging.yaml @@ -1,4 +1,4 @@ config: - aws:profile: planx-staging + aws:profile: planx-staging-pulumi data:db-password: - secure: AAABANyYBkbNfKWlHJPgQchQUyXbkh/jFGevy7r9Mqsx6mAxtE9ff01Z4T0nCJJ30N0GFwfd6TyvdGcdvuNuXg== + secure: AAABAC1IL67K+rI8eqDLfUG/eTuaQlcEOOBUmXWjY8pyrS32fUCm2WQGHCo7uwb1UYREMyYOSiYHolwpcscRLQ== diff --git a/infrastructure/data/index.ts b/infrastructure/data/index.ts index 3b7082e6e4..78fe9270bd 100644 --- a/infrastructure/data/index.ts +++ b/infrastructure/data/index.ts @@ -14,7 +14,7 @@ const db = new aws.rds.Instance("app", { engine: "postgres", // Available versions: // $ aws rds describe-db-engine-versions --default-only --engine postgres - engineVersion: "12.14", + engineVersion: "12.17", // Available instance types: https://aws.amazon.com/rds/instance-types/ instanceClass: env === "production" ? "db.t3.medium" : "db.t3.micro", allocatedStorage: env === "production" ? 100 : 20,