我正在为我的 ECS 服务构建云形成模板(YML 格式)并停留在负载均衡器目标组中,它无法附加到我的 ECS 实例并尝试Targets
通过引用此官方 AWS 文档https://docs 来添加。 aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetdescription.html
下面是我的目标组,当我多次停止启动(终止)我的实例时,我的实例 ID 将一直在变化并且不会是静态的,例如 VPC 或子网 ID,以及如何在 Id 字段中动态构建值目标?
TargetGroup:
Type: AWS::ElasticLoadBalancingV2::TargetGroup
Properties:
Matcher:
HttpCode: "200"
Name: "foo"
Port: "8080"
Protocol: "HTTP"
Targets:
Id: String // This I need to build dynamically
Port: 8080
TargetType: "instance"
UnhealthyThresholdCount: 3
VpcId: "vpc-79251d11"
注意:我尝试搜索 EC2 资源并找到此https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-ec2.html但它对我没有帮助。我也在使用 ASG 和 LC 来创建我的 ECS 实例。