├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE.md ├── Readme.md ├── img ├── asr.png └── sr-ansible-snippet.gif ├── package.json └── snippets ├── ansible.builtin.snippets.json ├── ansible.netcommon.snippets.json ├── ansible.posix.snippets.json ├── ansible.windows.snippets.json ├── community.crypto.snippets.json ├── community.docker.snippets.json ├── community.general.snippets.json ├── community.mysql.snippets.json ├── community.postgresql.snippets.json ├── kubernetes.core.snippets.json └── snippets.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/Readme.md -------------------------------------------------------------------------------- /img/asr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/img/asr.png -------------------------------------------------------------------------------- /img/sr-ansible-snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/img/sr-ansible-snippet.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/ansible.builtin.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/ansible.builtin.snippets.json -------------------------------------------------------------------------------- /snippets/ansible.netcommon.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/ansible.netcommon.snippets.json -------------------------------------------------------------------------------- /snippets/ansible.posix.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/ansible.posix.snippets.json -------------------------------------------------------------------------------- /snippets/ansible.windows.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/ansible.windows.snippets.json -------------------------------------------------------------------------------- /snippets/community.crypto.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/community.crypto.snippets.json -------------------------------------------------------------------------------- /snippets/community.docker.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/community.docker.snippets.json -------------------------------------------------------------------------------- /snippets/community.general.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/community.general.snippets.json -------------------------------------------------------------------------------- /snippets/community.mysql.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/community.mysql.snippets.json -------------------------------------------------------------------------------- /snippets/community.postgresql.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/community.postgresql.snippets.json -------------------------------------------------------------------------------- /snippets/kubernetes.core.snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/kubernetes.core.snippets.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephrobert/ansible-snippets/HEAD/snippets/snippets.json --------------------------------------------------------------------------------