├── .gitignore ├── README.md ├── ansible.cfg ├── ec2_remote_facts.yml ├── files └── example.json ├── inventory └── localhost ├── json_example.yml ├── snippets.yml └── templates └── notify.txt.j2 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/ansible.cfg -------------------------------------------------------------------------------- /ec2_remote_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/ec2_remote_facts.yml -------------------------------------------------------------------------------- /files/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/files/example.json -------------------------------------------------------------------------------- /inventory/localhost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/inventory/localhost -------------------------------------------------------------------------------- /json_example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/json_example.yml -------------------------------------------------------------------------------- /snippets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/snippets.yml -------------------------------------------------------------------------------- /templates/notify.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonovoxly/ansible_snippets/HEAD/templates/notify.txt.j2 --------------------------------------------------------------------------------