Open
Description
Describe the bug
VPC defined as:
this.vpc = new ec2.Vpc(this, 'Vpc', {
maxAzs: 2,
subnetConfiguration: [
{ cidrMask: 24, name: 'Isolated', subnetType: ec2.SubnetType.PRIVATE_ISOLATED },
],
});
When trying to deploy the below APIGW definition:
const lb = new cdk.aws_elasticloadbalancingv2.ApplicationLoadBalancer(this, 'lb', { vpc: props.vpc });
const listener = lb.addListener('Listener', { port: 80 });
listener.addTargets('ecs', {
port: 80,
targets: [props.backendService.loadBalancerTarget({
containerName: 'backend',
containerPort: 8000,
})],
});
const vpcLink = new cdk.aws_apigatewayv2.VpcLink(this, 'VpcLink', { vpc: props.vpc });
new cdk.aws_apigatewayv2.HttpApi(this, 'HttpProxyPrivateApi', {
apiName: 'BackendApi',
defaultIntegration: new HttpAlbIntegration('DefaultIntegration', listener, { vpcLink }),
});
}
Expected Behavior
VpcLink is created using Isolated subnets automatically.
Current Behavior
Error: There are no 'Private' subnet groups in this VPC. Available types: Isolated,Deprecated_Isolated
Reproduction Steps
As above.
Possible Solution
Workaround:
const vpcLink = new cdk.aws_apigatewayv2.VpcLink(this, 'VpcLink', { vpc: props.vpc, subnets: { subnetType: ec2.SubnetType.PRIVATE_ISOLATED } });
Additional Information/Context
No response
CDK CLI Version
2.129.0
Framework Version
No response
Node.js Version
18.18.2
OS
MacOS
Language
TypeScript
Language Version
No response
Other information
No response