如何将Fn :: Join嵌套在Fn :: If中?

时间:2019-02-05 18:55:23

标签: amazon-web-services yaml amazon-cloudformation

我有一个要在实例上运行的bash脚本,但是如果值是true,我只希望脚本的第二部分运行。另外,我希望脚本中不要使用if语句。

Parameters:
   #TestParameter = TRUE
Resource:
   UserData:  
      Fn::Sub: |
          echo "This is a test example"
          #If TestParameter is true:
          echo "Only is parameter is true"

1 个答案:

答案 0 :(得分:0)

我认为,最好将Sub参数构造到脚本中:

UserData:
  Fn::Sub: |
    echo "This is a test example"
    if ${TestParameter}; then
        echo "Only is parameter is true"
    fi

但是由于您不想在脚本中包含if,因此必须在Cloudformation模板中构造脚本的主体。在CFN中构建字符串总是很混乱。尝试这样的事情:

UserData:
  Fn::Join: ["\n", ["echo 'This is a test example'",
                     ['Fn::If': [!Equals [!Ref TestParameter, "true"], "echo 'Parameter is true'", ""]]]]