private createVpc()

in lib/networking.ts [26:34]


    private createVpc(): ec2.Vpc {
        let vpc = new ec2.Vpc(this, 'vpc', {
            maxAzs: 2,
            cidr: '172.29.0.0/16'
        });
        this.output('VpcId', vpc.vpcId);

        return vpc;
    }