mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
[ec2] return instances sorted by id (#35359)
This commit is contained in:
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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user