Skip to content

Commit

Permalink
yield control of backups to https://github.com/guardian/aws-backup
Browse files Browse the repository at this point in the history
  • Loading branch information
srbd committed Feb 2, 2024
1 parent aca3441 commit 48b9584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres/cdk/lib/giant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ export class Giant extends GuStack {
allocatedStorage: dbStorage,
maxAllocatedStorage: dbStorage + 20,
autoMinorVersionUpgrade: true,
backupRetention: Duration.days(14),
instanceType: InstanceType.of(
InstanceClass.T4G,
this.stage === 'PROD' ? InstanceSize.MICRO : InstanceSize.MICRO,
),
instanceIdentifier: `giant-db-${this.stage}`,
databaseName: 'giant',
deletionProtection: true,
deleteAutomatedBackups: false,
cloudwatchLogsExports: ['postgresql'],
iamAuthentication: true,
multiAz: false,
Expand Down

0 comments on commit 48b9584

Please sign in to comment.