Cloudformation Creation of Instances using Count Macro

0

If I am creating WebServer instances using Cloudformation with the Count Macro, how do you get different names and tags per instance created?

preguntada hace 2 años275 visualizaciones
1 Respuesta
0

The documentation for the Count Macro in github is pretty clear. You can include a %d anywhere in a tag-value and Count will replace it with the iteration #.

Given:

AWSTemplateFormatVersion: "2010-09-09"
Transform: Count
Resources:
  Bucket:
    Type: AWS::S3::Bucket
    Properties:
      Tags:
        - Key: TestKey
          Value: my bucket %d
    Count: 3

This will create three S3 buckets with the first bucket having tag TestKey = "my bucket 1", the 2nd bucket having tag TestKey = "my bucket 2" etc.

Since resource names are defined as a tag with the key = 'Name', you can apply the '%d' in the Name tag-value to. In fact, if you're going to set the 'Name' tag for a resource type using Count you must use the '%d' otherwise Count will apply the same 'Name' tag-value to each iteration and CFT will fail trying to create the 2nd instance because the first instance already has the name.

AWS
Scott_K
respondido hace 2 años

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas