[ec2] return instances sorted by id (#35359)

pull/35401/head
Sloane Hertel 7 years ago committed by Adam Miller
parent de2427beaf
commit 44171b70c2

@ -1755,6 +1755,14 @@ def main():
else:
(tagged_instances, instance_dict_array, new_instance_ids, changed) = enforce_count(module, ec2, vpc)
# Always return instances in the same order
if new_instance_ids:
new_instance_ids.sort()
if instance_dict_array:
instance_dict_array.sort(key=lambda x: x['id'])
if tagged_instances:
tagged_instances.sort(key=lambda x: x['id'])
module.exit_json(changed=changed, instance_ids=new_instance_ids, instances=instance_dict_array, tagged_instances=tagged_instances)

Loading…
Cancel
Save