Commit 981d56ba by James Cammarata

Merge pull request #7472 from atlashealth/ec2_terminate_paused_instances

EC2: stopped instances can also be terminated
parents f54a3b66 26c24915
......@@ -990,7 +990,7 @@ def terminate_instances(module, ec2, instance_ids):
terminated_instance_ids = []
for res in ec2.get_all_instances(instance_ids):
for inst in res.instances:
if inst.state == 'running':
if inst.state == 'running' or inst.state == 'stopped':
terminated_instance_ids.append(inst.id)
instance_dict_array.append(get_instance_info(inst))
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment