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?

1 réponse
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
INGÉNIEUR EN ASSISTANCE TECHNIQUE
Aamir_H
répondu il y a 14 jours

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions