Skip to content

Instantly share code, notes, and snippets.

@austincunningham
Last active August 10, 2018 22:55
Show Gist options
  • Save austincunningham/6562c1e2685f8f747b3c3020d1101500 to your computer and use it in GitHub Desktop.
Save austincunningham/6562c1e2685f8f747b3c3020d1101500 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
from ansible.module_utils.basic import *
def main():
module = AnsibleModule(argument_spec={})
theReturnValue = {"hello": "world"}
module.exit_json(changed=False, meta=theReturnValue)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment