Amazon web services – how to create awsx.lb.ApplicationLoadBalancer in a non-default VPC?
I am trying to create a load balancer in some specific VPC, for example: export const vpc = new awsx.ec2.Vpc( `ls-vpc-${stackName}`, { numberOfAvailabilityZones: 2, cidrBlock: '10.0.0.0/16', subnetStrategy: 'Auto', subnetSpecs: [ { type: awsx.ec2.SubnetType.Public, name: 'public', cidrMask: 24, }, { type:…