mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Remove unneeded nesting
The double nesting causes an issue with setting a default empty list if you need to loop over this using with_items. This fixes the issue since it looks like ansible silently fails at setting the default if you use with_items: registered_var['one']['two'] where one is not set.
This commit is contained in:
committed by
Matt Clay
parent
509188bfd9
commit
9b19de89c7
@@ -146,8 +146,7 @@ def main():
|
||||
except:
|
||||
print module.jsonify('error getting instances from: ' + region.name)
|
||||
|
||||
ansible_facts = {'info': server_info}
|
||||
ec2_facts_result = dict(changed=True, ec2=ansible_facts)
|
||||
ec2_facts_result = dict(changed=True, ec2=server_info)
|
||||
|
||||
module.exit_json(**ec2_facts_result)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user