从 CloudFormation 模板中的 DropDownList 中选择多个值

Posted

技术标签:

【中文标题】从 CloudFormation 模板中的 DropDownList 中选择多个值【英文标题】:Selecting multiple values from DropDownList in CloudFormation Template 【发布时间】:2020-10-10 00:24:13 【问题描述】:

Cloudformation 专家,

是否可以从 Cloudformation 模板的下拉列表中选择多个值?

我尝试了类似的方法,但没有成功

  pTypeOfAccountNeeded:
    Default: "Tools, Sandbox, Dev, Test (QA), Preprod, Prod"
    AllowedValues: 
      - "Tools"
      - "Sandbox"
      - "Dev"
    Type: CommaDelimitedList

【问题讨论】:

【参考方案1】:

很遗憾,这不可能

如果您希望用户提供的此类值很少,则必须将参数定义如下(示例):

  pTypeOfAccountNeeded:
    Default: "Tools,Dev"
    Type: CommaDelimitedList
    AllowedValues: 
      - "Tools,Sandbox"
      - "Sandbox"
      - "Tools,Dev"

【讨论】:

以上是关于从 CloudFormation 模板中的 DropDownList 中选择多个值的主要内容,如果未能解决你的问题,请参考以下文章

迭代模板中的 AWS cloudformation 资源数组

从 cloudformation 模板绘制图像

使用 Boto 从 CloudFormation 模板返回输出?

从 lambda 函数中检索 cloudformation 堆栈名称

如何遍历 CloudFormation 模板中的值

从 VPC 内的另一个 cloudformation 模板引用 SecurityGroup