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 40cf74f commit 6452962Copy full SHA for 6452962
vpc/lib/vpc-stack.ts
@@ -10,10 +10,11 @@ export class VpcStack extends Stack {
10
constructor(scope: Construct, id: string, props?: StackProps) {
11
super(scope, id, props);
12
13
+ const cidr = `10.100.0.0/16`;
14
const vpc = new ec2.Vpc(this, 'Vpc', {
15
maxAzs: 3,
16
natGateways: 3,
- cidr: '10.100.0.0/16',
17
+ cidr,
18
subnetConfiguration: [
19
{
20
cidrMask: 20,
0 commit comments