用于使用现有目标组配置新 EC2 实例的 AWS CF 模板
AWS CF Template for provisioning new EC2 instance with Existing Targetgroup
我正在尝试提供一个新的 EC2 实例并将其附加到我之前创建的现有 targetGroup。我确实有 targetGroupArn 和新实例的详细信息。在所有文档中,我可以看到创建新实例和新 targetgroup 并将实例 ID 引用到创建 targetgroup 的示例模板。
Is there any option to create only new instance and attaching it to the existing target group?
以便我可以提及新实例将附加到的 targetGroupArn。
下面我提到了示例模板,我正在寻找什么。
{
"Type": "AWS::ElasticLoadBalancingV2::TargetGroup",
"Properties": {
"TargetGroupArn": "arn:aws:elasticloadbalancing:ap-south-1:4444444444:targetgroup/MyTG/56abcccccccc56",
"Targets": [
{
"Id": {
"Ref": "ec2Instance1"
}
}
]
}
}
Is there any option to create only new instance and attaching it to the existing target group?
是的,您可以通过 lambda 函数形式的 custom resources 来实现。该函数将使用 AWS SDK,例如 boto3
,将实例附加到现有目标组。
我正在尝试提供一个新的 EC2 实例并将其附加到我之前创建的现有 targetGroup。我确实有 targetGroupArn 和新实例的详细信息。在所有文档中,我可以看到创建新实例和新 targetgroup 并将实例 ID 引用到创建 targetgroup 的示例模板。
Is there any option to create only new instance and attaching it to the existing target group?
以便我可以提及新实例将附加到的 targetGroupArn。 下面我提到了示例模板,我正在寻找什么。
{
"Type": "AWS::ElasticLoadBalancingV2::TargetGroup",
"Properties": {
"TargetGroupArn": "arn:aws:elasticloadbalancing:ap-south-1:4444444444:targetgroup/MyTG/56abcccccccc56",
"Targets": [
{
"Id": {
"Ref": "ec2Instance1"
}
}
]
}
}
Is there any option to create only new instance and attaching it to the existing target group?
是的,您可以通过 lambda 函数形式的 custom resources 来实现。该函数将使用 AWS SDK,例如 boto3
,将实例附加到现有目标组。