We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 914dded commit 36b5f48Copy full SHA for 36b5f48
PetAdoptions/cdk/pet_stack/lib/services.ts
@@ -109,7 +109,8 @@ export class Services extends Stack {
109
}
110
// The VPC where all the microservices will be deployed into
111
const theVPC = new ec2.Vpc(this, 'Microservices', {
112
- cidr: cidrRange,
+ ipAddresses: ec2.IpAddresses.cidr(cidrRange),
113
+ // cidr: cidrRange,
114
natGateways: 1,
115
maxAzs: 2
116
});
0 commit comments