[ec2] return instances sorted by id (#35359)
This commit is contained in:
parent
de2427beaf
commit
44171b70c2
1 changed files with 8 additions and 0 deletions
|
@ -1755,6 +1755,14 @@ def main():
|
||||||
else:
|
else:
|
||||||
(tagged_instances, instance_dict_array, new_instance_ids, changed) = enforce_count(module, ec2, vpc)
|
(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)
|
module.exit_json(changed=changed, instance_ids=new_instance_ids, instances=instance_dict_array, tagged_instances=tagged_instances)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue