Fix default availability zone list
This commit is contained in:
parent
73c1ccf53e
commit
426a827b46
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ def create_autoscaling_group(connection, module):
|
||||||
ec2_connection = connect_to_aws(boto.ec2, region, **aws_connect_params)
|
ec2_connection = connect_to_aws(boto.ec2, region, **aws_connect_params)
|
||||||
except boto.exception.NoAuthHandlerFound, e:
|
except boto.exception.NoAuthHandlerFound, e:
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=str(e))
|
||||||
module.params['availability_zones'] = [zone.name for zone in ec2_connection.get_all_zones()]
|
availability_zones = module.params['availability_zones'] = [zone.name for zone in ec2_connection.get_all_zones()]
|
||||||
|
|
||||||
if not as_groups:
|
if not as_groups:
|
||||||
ag = AutoScalingGroup(
|
ag = AutoScalingGroup(
|
||||||
|
|
Loading…
Reference in a new issue