Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const vpc = new Vpc(this, "Vpc", {
cidr: "10.0.0.0/16",
natGateways: 0,
subnetConfiguration: [
{ name: "aasa_isolated", subnetType: SubnetType.ISOLATED }
]
});
const subnetIds: string[] = [];
vpc.isolatedSubnets.forEach(subnet => {
subnetIds.push(subnet.subnetId);
});
// SUBNET GROUP
const dbSubnetGroup: CfnDBSubnetGroup = new CfnDBSubnetGroup(
this,
"AuroraSubnetGroup",
{
dbSubnetGroupDescription: "Subnet group to AASA Aurora",
dbSubnetGroupName: "aasa-subnet-group",
subnetIds
}
);
// RDS PARAMETER GROUP
const dbParamGroup = new CfnDBClusterParameterGroup(
this,
"ParameterGroup",
{
family: "aurora5.6",