Fixing ec2_asg termination_policy

If this isnt set, it wont launch the instances because it needs to default to "Default" despite what boto docs say.
pull/18777/head
evanccnyc@users.noreply.github.com 9 years ago committed by Matt Clay
parent c56db7920a
commit ff81aa11c0

@ -800,7 +800,7 @@ def main():
health_check_type=dict(default='EC2', choices=['EC2', 'ELB']),
default_cooldown=dict(type='int', default=300),
wait_for_instances=dict(type='bool', default=True),
termination_policies=dict(type='list', default=None)
termination_policies=dict(type='list', default='Default')
),
)

Loading…
Cancel
Save