通过CloudFormation在根卷的AWS :: EC2 :: Instances BlockStorage上设置标签

时间:2019-04-11 11:27:13

标签: amazon-web-services configuration tags config amazon-cloudformation

我们要使用特定标签标记云形成堆栈的每个资源(出于计费和财务原因)。这包括在(/ dev / sda1)下安装的主分区上使用的主存储。

这就是我们拥有的:

---
AWSTemplateFormatVersion: '2010-09-09'
Description: The Name
Parameters:
  InstanceType:
    Description: EC2 instance type
    Type: String
    Default: t3.small
    AllowedValues:
    - t3.nano
    - ...
  InstanceName:
    Description: Name Tag
    Type: String
Resources:
  TheECCInstance:
    Type: AWS::EC2::Instance
    Properties:
      KeyName: jenkins
      ImageId: !FindInMap [RegionMap, !Ref 'AWS::Region', AMI]
      InstanceType:
        Ref: InstanceType
      SubnetId: subnet-0e9c7d7c2711aaf9e
      BlockDeviceMappings:
        - DeviceName: "/dev/sda1"
          Ebs:
            VolumeSize:
              Ref: EBSBlockSize
            VolumeType: gp2
      Tags:
      - Key: Name
        Value:
          Ref: InstanceName
      - Key: Type
        Value: TheType

Mappings:
  RegionMap:
    'ap-northeast-3':
      NAME: ap-northeast-3b
      AMI: 'ami-05e896b95030bd37c'
    'sa-east-1':
      NAME: sa-east-1b
      AMI: 'ami-03c6239555bb12112'
    'eu-west-1':
      NAME: eu-west-1b
      AMI: 'ami-00035f41c82244dab'
    ...

Outputs:
  ...

不介意使用类似的东西

  RootVolume:
    Type: AWS::EC2::Volume      // Or Something in that direction (EFS / EBS / whatever)
    Properties:
      Size:
        Ref: EBSBlockSize
      VolumeType: gp2
      AvailabilityZone: !FindInMap [RegionMap, !Ref 'AWS::Region', NAME]
      Tags:
        - Key: Type
          Value: TheType

并安装。使其成为主要分区似乎似乎是不可能的。可以使用AWS :: EC2 :: Volume,AWS :: EFS等形式。这里的任何帮助将不胜感激。当前,我们创建实例,然后在堆栈创建后进行标记。但这似乎有些脆弱,应该有一种更简单的方法来做到这一点。

1 个答案:

答案 0 :(得分:0)

不可能形成云

事实证明,aws cloudformation无法实现。 这个问题提示我这个答案:https://serverfault.com/questions/876942/create-new-ec2-instance-with-existing-ebs-volume-as-root-device-using-cloudforma

terraform解决方案

使用“ terraform”非常简单:


resource "aws_instance" "someName" {
  ami           = "ami-***********"
  instance_type = "t2.*******"
  tags          = {
    Type = "InstanceTag"
  }
  volume_tags   = {
    Type = "VolumeTag"
  }
}

我们的解决方案(詹金斯和shell脚本)

我们使用cloudformation通过jenkins生成CI实例。迁移到terraform可能会导致我们愿意承担的更多工作。我们需要标签来进行成本计算。因此,当意识到无法实现cloudformation时,我们在创建实例后使用cli标记实例。

显然,必须安装awscli。凭据来自环境变量。

这是我们使用的脚本:

sleep 1m
EC2_VOLUMES=$(aws ec2 describe-instances --region "${INSTANCE_REGION}" --filter "Name=tag-key,Values=Type" "Name=tag-value,Values=Jenkins" --filter "Name=tag-key,Values=Name" "Name=tag-value,Values=BackendJenkins${BUILD_NUMBER}" --query "Reservations[*].Instances[*].BlockDeviceMappings[*].Ebs.[VolumeId]" --output text)

echo $AWS_SECRET_ACCESS_KEY | base64 -i > foo.txt

while read -r RESOURCE; do
    # We set the name and the type tag
    aws ec2 create-tags --resources "$RESOURCE" --region "${INSTANCE_REGION}" --tags "Key=Type,Value=TheTagValue"
    aws ec2 create-tags --resources "$RESOURCE" --region "${INSTANCE_REGION}" --tags "Key=Name,Value=TheInstanceName${BUILD_NUMBER}"
done <<< "$EC2_VOLUMES"

有关生成EC2 :: Volumes和Tag Propagation的所有提示,谢谢。