AWS QuickStart Aurora Postgres v0.0.3, Oct 15 21
AWS QuickStart Aurora Postgres
Easily create AWS Aurora Postgres Cluster based on the AWS QuickStart Aurora Postgres guide as a package available in all Pulumi languages.
Example
const myDb = new aurora.Cluster("demo-cluster", {
vpcID: myVpc.vpcID,
dbName: "myDemoDatabase",
dbEngineVersion: "9.6.16",
dbInstanceClass: "db.r4.large",
availabilityZoneNames: ["us-west-2a", "us-west-2b"],
dbNumDbClusterInstances: 3,
dbMasterUsername: "rootUser",
enableEventSubscription: false,
dbMasterPassword: pulumi.secret("TestPassword1234!"),
dbParameterGroupFamily: "aurora-postgresql9.6",
privateSubnetID1: "private Subnet ID 1",
privateSubnetID2: "private Subnet ID 2",
});