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:
Michael Schuett 2015-07-25 18:42:11 -04:00
parent c64c2995a4
commit c08fa1269d

View file

@ -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)