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.
This commit is contained in:
parent
c56db7920a
commit
ff81aa11c0
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue