如何在cloudformation中添加自定义属性?

时间:2018-05-24 20:05:46

标签: amazon-web-services amazon-cloudformation

我想为在cloudformation中创建的ec2实例添加自定义属性,这样它就会在aws ecs describe-container-instances ...的输出中显示为ATTRIBUTE。我在任何描述如何操作的文档中找不到任何地方。我尝试过元数据,但是没有用。必须有办法!

1 个答案:

答案 0 :(得分:1)

有人提出了类似的问题,即“在发布时”添加属性。

尝试以下方法:

echo ECS_INSTANCE_ATTRIBUTES={\"mycostomattr\":\"myvalue\"} >> /etc/ecs/ecs.config

参考AWS doc:http://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-config.html

和SO问题:How can you add EC2 instance attributes at launch?