Skip to content

Commit 6452962

Browse files
authored
Move the ecs-fargate-cdk repo to org
1 parent 40cf74f commit 6452962

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vpc/lib/vpc-stack.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ export class VpcStack extends Stack {
1010
constructor(scope: Construct, id: string, props?: StackProps) {
1111
super(scope, id, props);
1212

13+
const cidr = `10.100.0.0/16`;
1314
const vpc = new ec2.Vpc(this, 'Vpc', {
1415
maxAzs: 3,
1516
natGateways: 3,
16-
cidr: '10.100.0.0/16',
17+
cidr,
1718
subnetConfiguration: [
1819
{
1920
cidrMask: 20,

0 commit comments

Comments
 (0)