Update Cloudformation/parsing#load_parameters to split commadelimitedlists into lists (#774)

This commit is contained in:
David Wilcox 2016-11-24 11:57:47 +11:00 committed by Steve Pulec
parent 17584e9aa4
commit 4ea915fc3a

View File

@ -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