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?

已提问 2 年前276 查看次数
1 回答
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
已回答 2 年前

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

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

回答问题的准则