TagSpecifications

0

Hi. I am trying to add tags when an SSM Automation script creates an AMI of an EC2 instance. How am I supposed to use the TagSpecifications input?

  • Hello. Can you give more context for this question? Are you using a custom document? What step are you creating the instance with (ex: aws:executeScript)? What API are you calling with the TagSpecifications input?

已提问 2 年前84 查看次数
1 回答
0

If you are planning to tag AMIs while using the CreateImage API with "aws:executeAwsApi" action in SSM Automation, then you can specify "TagSpecifications" as follows:

Sample:-

schemaVersion: '0.3'
parameters:
  instance:
    type: String
mainSteps:
  - name: CreateImage
    action: aws:executeAwsApi
    isEnd: true
    inputs:
      Service: ec2
      Api: CreateImage
      InstanceId: '{{ instance }}'
      Name: 'TestAMI'
      TagSpecifications:
        - ResourceType: image
          Tags:
            - Key: Name
              Value: SSM
AWS
支持工程师
Aamir_H
已回答 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则