in lib/proxy.ts [33:39]
private createCluster(): ecs.Cluster {
let cluster = new ecs.Cluster(this, 'ProxyCluster', {
vpc: this.props.networking.vpc
});
this.output('ProxyClusterARN', cluster.clusterArn);
return cluster;
}