sparse-intern-71089
05/11/2021, 3:28 PMbillowy-army-68599
creamy-knife-93354
05/11/2021, 3:34 PMMainRouteTableAssociation
. Not sure what's gone wrong here...billowy-army-68599
creamy-knife-93354
05/11/2021, 3:41 PMvar vpcRouteTable = new RouteTable($"{stack}-vpc-route-table-public", new RouteTableArgs
{
VpcId = vpc.Id,
Routes = new []
{
new RouteTableRouteArgs
{
CidrBlock = "0.0.0.0/0",
GatewayId = igw.Id,
}
}
});
var vpcRouteTableAssociation = new MainRouteTableAssociation($"{stack}-vpc-route-table-association",
new MainRouteTableAssociationArgs
{
VpcId = vpc.Id,
RouteTableId = vpcRouteTable.Id
});
billowy-army-68599
creamy-knife-93354
05/11/2021, 3:48 PM