我有大量的AWS Cloudformation,并且有责任将一些资源与两个VPC分开。两者都应该与公共资源和相同的可用区域。他们可以使用相同的InternetGateway。它只是额外的安全任务。
我有点困惑。
从示例中我看到我应该像这样使用VPCPeeringConnection:
"myVPCPeeringConnection": {
"Type": "AWS::EC2::VPCPeeringConnection",
"Properties": {
"VpcId": {"Ref": "myVPC"},
"PeerVpcId": {"Ref": "myPrivateVPC"}
}
}
但他们在公共和私人资源之间进行对等,我需要在VPC的公共资源之间进行对等。
我是否应该为每个子网创建单独的子网,RouteTable,InternetGateway,VPCGatewayAttachment,PublicNetworkAcl,Route? 或者我可以将它们全部用于两者?
谢谢!