Fix the issue #931

Checking that the parameter doesn't exist. The old code had a bug when the parameter was 0.
pull/18777/head
Julien Syx 10 years ago committed by Matt Clay
parent d5e3abc5d5
commit c676adde0b

@ -324,7 +324,7 @@ def create_autoscaling_group(connection, module):
as_group = as_groups[0] as_group = as_groups[0]
changed = False changed = False
for attr in ASG_ATTRIBUTES: for attr in ASG_ATTRIBUTES:
if module.params.get(attr): if module.params.get(attr, None) is not None:
module_attr = module.params.get(attr) module_attr = module.params.get(attr)
if attr == 'vpc_zone_identifier': if attr == 'vpc_zone_identifier':
module_attr = ','.join(module_attr) module_attr = ','.join(module_attr)

Loading…
Cancel
Save