This message was deleted.
# general
s
This message was deleted.
g
Can you share your code?
Copy code
// 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.
g
As best I can tell Pulumi is not creating the VPC endpoint - it is being created by AWS automatically. I believe this is due to using
ServerlessEngine
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.
b
thx, After some test, I found the serverless MySQL need VPC endpoints
👍 1