sparse-intern-71089
10/29/2020, 2:07 AMgentle-diamond-70147
10/29/2020, 2:08 AMbumpy-photographer-59590
10/29/2020, 2:11 AMbumpy-photographer-59590
10/29/2020, 2:13 AM// Get default VPC
const vpc = awsx.ec2.Vpc.getDefault();
// Create an Aurora Serverless MySQL database
const dbsubnet = new aws.rds.SubnetGroup("dbsubnet", {
subnetIds: vpc.publicSubnetIds,
});
I need to disable pulumi to create the VPC endpoint, beacuse I donot need it and it is very expensive.gentle-diamond-70147
10/29/2020, 6:07 AMServerlessEngine
as the engineMode
. I think this is a requirement of serverless Aurora, but I'm not very familiar with this mode of Aurora to know for sure.bumpy-photographer-59590
10/29/2020, 1:33 PM