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.
reviewable/pr18780/r1
EC 9 years ago
parent 22d25de23c
commit 9168ed4736

@ -794,7 +794,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