gpt4 book ai didi

amazon-web-services - AWS --Cloudformation --SubnetRouteTableAssociation --未能及时稳定

转载 作者:行者123 更新时间:2023-12-03 07:37:11 24 4
gpt4 key购买 nike

我有一个堆栈一直构建到底部,但由于我似乎无法弄清楚的原因,它开始在一个奇怪的位置中断,导致 CREATE_FAILED 错误。
相关错误代码: AWS::EC2::SubnetRouteTableAssociation SubnetRouteTableAssociationMain 子网路由表关联 rtbassoc-894281e2 未能在预期时间内稳定
现在我发现这真的很有趣,因为我在构建的早期阶段与此子网关联有类似的错误,但它有时有效,有时失败。这是有问题的代码库以及可能与此设置冲突的其他任何内容,似乎失败的是倒数第二个代码块。

SocoDrIGW:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
-
Key: SOCODR
Value: InternetGateway


RouteTableSocoDrMain:
Type: AWS::EC2::RouteTable
DependsOn: SocoDrVPC
Properties:
VpcId:
Ref: SocoDrVPC

RouteDrMain:
Type: AWS::EC2::Route
DependsOn:
- RouteTableSocoDrMain
- SocoDrIGW
- SocoDrSubnet01
Properties:
RouteTableId:
Ref: RouteTableSocoDrMain
DestinationCidrBlock: 0.0.0.0/0
GatewayId:
Ref: SocoDrIGW

#ERROR OCCURS HERE
SubnetRouteTableAssociationMain:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId:
Ref: SocoDrSubnet01
RouteTableId:
Ref: RouteTableSocoDrMain

SocoDrSubnet01:
Type: AWS::EC2::Subnet
Properties:
AvailabilityZone: !Join [ '', [ !Ref 'AWS::Region', !Ref AvailabilityZones ] ]
VpcId:
Ref: SocoDrVPC
CidrBlock: 10.10.8.0/24

Tags:
-
Key: SOCODR
Value: Subnet

最佳答案

不过我已经知道出了什么问题了。 According to the white pages: VPC 中的每个子网都必须与一个路由表关联;该表控制子网的路由。一个子网一次只能关联一个路由表,但可以将多个子网关联到同一个路由表。

我配置的是两个子网路由表关联相互抵消,因为它们都连接到同一子网。

关于amazon-web-services - AWS --Cloudformation --SubnetRouteTableAssociation --未能及时稳定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49178638/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com