2

Cloudformation expert,

Is it possible to be able to select multiple values from a dropdownlist in Cloudformation Template?

I tried something like this but it didn't work

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

1 回答 1

2

Unfortunate, this is not possible.

If you want to have few such values provided by users, you have to define your parameter as follows (an example):

  pTypeOfAccountNeeded:
    Default: "Tools,Dev"
    Type: CommaDelimitedList
    AllowedValues: 
      - "Tools,Sandbox"
      - "Sandbox"
      - "Tools,Dev"
于 2020-06-20T02:00:03.703 回答