AWS Cloudformation 中 UserData 中的引用参数值

Reference Parameter Value in UserData in AWS Cloudformation

我在参数部分有这个,

Parameters:
  PlatformSelect:
    Description: Cockpit platform Select.
    Type: String
    Default: qa-1
    AllowedValues: [qa-1, qa-2, staging, production]

我需要在我的 UserData 中引用这个值。我在两者之间使用映射。

Mappings:
  bootstrap:
    ubuntu:
      print: echo ${PlatformSelect} >>test.txt

Resources:
  EC2Instance:
    Type: AWS::EC2::Instance
    Properties:
      InstanceType: !Ref ‘InstanceType’
      KeyName: !Ref ‘KeyName’
      Tags:
      - Key: Name
        Value: Test
      UserData:
        Fn::Base64:
          Fn::Join:
          - ‘’
          - - |
              #!/bin/bash
            - Fn::FindInMap:
              - bootstrap
              - ubuntu
              - print
            - |2+

这是行不通的。首先不确定我引用它的方式是错误的!!

我应该在它之前使用诸如“${AWS::Parameters:PlatformSelect}”之类的东西吗?

你在两者之间使用 Mapping 有什么原因吗?

您可以轻松地使用 !Sub 代替

Resources:
  EC2Instance:
    Type: AWS::EC2::Instance
    Properties:
      InstanceType: !Ref InstanceType
      KeyName: !Ref KeyName
      Tags:
        - Key: Name
          Value: Test
      UserData:
        Fn::Base64:
          !Sub |
            #!/bin/bash
            ${PlatformSelect}

Fn::JoinRef

的组合怎么样
UserData:
        Fn::Base64:
          Fn::Join:
            - ''
            - - '#!/bin/bash\n'
              - 'print: echo'
              - !Ref 'PlatformSelect' 
              - '>>test.txt\n'