Skip to content

Instantly share code, notes, and snippets.

@kcwinner
Created November 21, 2024 15:00
Show Gist options
  • Save kcwinner/0392361784a42f50748ed95691484c3c to your computer and use it in GitHub Desktop.
Save kcwinner/0392361784a42f50748ed95691484c3c to your computer and use it in GitHub Desktop.
import { DatabaseCluster, CfnDBCluster } from "aws-cdk-lib/aws-rds";
export class ServerlessAuroraDB extends Construct {
this.cluster = new DatabaseCluster(this, "AuroraCluster", {
// If you're using Aurora PostgreSQL, the database engine must be running at least version 16.3, 15.7, 14.12, or 13.15.
engine: DatabaseClusterEngine.auroraPostgres({
version: AuroraPostgresEngineVersion.VER_15_8,
}),
...,
serverlessV2MinCapacity: 0.5,
serverlessV2MaxCapacity: 1,
});
const cfnDbCluster = this.cluster.node.defaultChild as CfnDBCluster;
cfnDbCluster.addOverride("Properties.ServerlessV2ScalingConfiguration.MinCapacity", 0);
// This is not yet supported in CloudFormation as of writing this
// The default is 5 minutes
// cfnDbCluster.addOverride("Properties.ServerlessV2ScalingConfiguration.SecondsUntilAutoPause", 1800); // 30m
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment