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?

已提問 1 年前檢視次數 256 次
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
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南