Update Cloudformation/parsing#load_parameters to split commadelimitedlists into lists (#774)
This commit is contained in:
parent
17584e9aa4
commit
4ea915fc3a
@ -329,6 +329,8 @@ class ResourceMap(collections.Mapping):
|
||||
# Set any input parameters that were passed
|
||||
for key, value in self.input_parameters.items():
|
||||
if key in self.resolved_parameters:
|
||||
if parameter_slots[key].get('Type', 'String') == 'CommaDelimitedList':
|
||||
value = value.split(',')
|
||||
self.resolved_parameters[key] = value
|
||||
|
||||
# Check if there are any non-default params that were not passed input params
|
||||
|
Loading…
Reference in New Issue
Block a user