├── 01 - Installation and Configuration of Ansible └── 05 - Validating Ansible Installation │ ├── 01 │ ├── ansible.cfg │ └── hosts │ ├── 02 │ ├── ansible.cfg │ └── hosts │ └── 03 │ ├── ansible.cfg │ └── hosts ├── 02 - Ansible Architecture and Design ├── 01 - Ansible Inventories │ ├── 10 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 11 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 12 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── hosts.yml │ ├── 13 │ │ ├── ansible.cfg │ │ ├── hosts │ │ ├── hosts.json │ │ └── hosts.yml │ ├── 14 │ │ ├── ansible.cfg │ │ ├── hosts │ │ ├── hosts.json │ │ └── hosts.yml │ ├── 01 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 03 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 04 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 05 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 06 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 07 │ │ ├── ansible.cfg │ │ └── hosts │ ├── 08 │ │ ├── ansible.cfg │ │ └── hosts │ └── 09 │ │ ├── ansible.cfg │ │ └── hosts ├── 02 - Ansible Modules │ ├── ansible.cfg │ ├── hosts │ ├── hosts.json │ └── hosts.yml ├── 03 - YAML │ ├── 10 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 11 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 12 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 13 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 14 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 15 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 16 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 17 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 18 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 19 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 20 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 21 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 22 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 01 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 02 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 03 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 04 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 05 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 06 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 07 │ │ ├── show_yaml_python.py │ │ └── test.yml │ ├── 08 │ │ ├── show_yaml_python.py │ │ └── test.yml │ └── 09 │ │ ├── show_yaml_python.py │ │ └── test.yml ├── 04 - Ansible Playbooks, Breakdown of sections │ ├── 01 │ │ └── motd_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml │ └── 07 │ │ ├── ansible.cfg │ │ ├── centos_motd │ │ ├── hosts │ │ └── motd_playbook.yml ├── 05 - Ansible Playbooks, Variables │ ├── 10 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 11 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 12 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 13 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 14 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 15 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 16 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 17 │ │ ├── ansible.cfg │ │ ├── extra_vars_file.json │ │ ├── extra_vars_file.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 01 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── external_vars.yml │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ ├── 08 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml │ └── 09 │ │ ├── ansible.cfg │ │ ├── hosts │ │ └── variables_playbook.yml ├── 06 - Ansible Playbooks, Facts │ ├── 01 │ │ ├── ansible.cfg │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── templates │ │ │ ├── getdate1.fact │ │ │ └── getdate2.fact │ ├── 03 │ │ ├── ansible.cfg │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── templates │ │ │ ├── getdate1.fact │ │ │ └── getdate2.fact │ ├── 04 │ │ ├── ansible.cfg │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── templates │ │ │ ├── getdate1.fact │ │ │ └── getdate2.fact │ ├── 05 │ │ ├── ansible.cfg │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── templates │ │ │ ├── getdate1.fact │ │ │ └── getdate2.fact │ └── 06 │ │ ├── ansible.cfg │ │ ├── facts.d │ │ ├── getdate1.fact │ │ └── getdate2.fact │ │ ├── facts_playbook.yml │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ └── hosts ├── 07 - Templating with Jinja2 │ ├── 10 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 11 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── jinja2_playbook.yml │ │ └── template.j2 │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ ├── 08 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml │ └── 09 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── jinja2_playbook.yml └── 08 - Ansible Playbooks, Creating and Executing │ ├── 10 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 01 │ ├── ansible.cfg │ ├── files │ │ └── nginx-default.conf │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html │ ├── 02 │ ├── ansible.cfg │ ├── files │ │ └── nginx-default.conf │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 03 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 04 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 05 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 06 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 07 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 08 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ └── 09 │ ├── ansible.cfg │ ├── files │ ├── nginx-default.conf │ └── nginx.conf.centos.patch │ ├── group_vars │ ├── centos │ └── ubuntu │ ├── host_vars │ ├── centos1 │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ └── index.html.j2 ├── 03 - Ansible Playbooks, Advanced Topics ├── 01 - Ansible Playbook Modules │ ├── 10 │ │ ├── ansible.cfg │ │ ├── group_by_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 11 │ │ ├── ansible.cfg │ │ ├── fetch_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── set_fact_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── set_fact_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── set_fact_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── pause_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── pause_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── wait_for_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── assemble_playbook.yml │ │ ├── conf.d │ │ │ ├── centos1 │ │ │ └── defaults │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── sshd_config │ ├── 08 │ │ ├── add_host_playbook.yml │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ └── 09 │ │ ├── add_host_playbook.yml │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ └── hosts ├── 02 - Dynamic Inventories │ ├── 01 │ │ ├── ansible.cfg │ │ └── inventory.py │ ├── 02 │ │ ├── ansible.cfg │ │ └── inventory.py │ ├── 03 │ │ ├── ansible.cfg │ │ └── inventory.py │ └── 04 │ │ ├── ansible.cfg │ │ └── inventory.py ├── 03 - register and when │ ├── 10 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_when_playbook.yml │ ├── 11 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_when_playbook.yml │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_playbook.yml │ ├── 08 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_when_playbook.yml │ └── 09 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── register_when_playbook.yml ├── 04 - Looping │ ├── 10 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 11 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 12 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 13 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 14 │ │ ├── ansible.cfg │ │ ├── custom_key │ │ ├── custom_key.pub │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── ssh_key_playbook.yml │ ├── 15 │ │ ├── ansible.cfg │ │ ├── directory_sequence.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 16 │ │ ├── ansible.cfg │ │ ├── directory_sequence.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 17 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── hex_directory_sequence_playbook.yml │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 18 │ │ ├── ansible.cfg │ │ ├── count_directory_sequence_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 19 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── random_choice_playbook.yml │ ├── 20 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── random.sh │ │ └── until_playbook.yml │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── motd_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ ├── 08 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml │ └── 09 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── user_playbook.yml ├── 05 - Asynchronous and Parallel Execution │ ├── 10 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 11 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 12 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 13 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 14 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 07 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ ├── 08 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml │ └── 09 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── slow_playbook.yml ├── 06 - Task Delegation │ ├── 01 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 03 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 04 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ └── 05 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ └── hosts ├── 07 - Magic Variables │ └── 01 │ │ ├── ansible.cfg │ │ ├── dump_vars_playbook.yml │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── templates │ │ └── dump_variables ├── 08 - Blocks │ ├── 01 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ └── 03 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ └── hosts ├── 09 - Ansible Vault │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ ├── external_vault_vars.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── vault_playbook.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── external_vault_vars.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── password_file │ │ └── vault_playbook.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── external_vault_vars.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── password_file │ │ └── vault_playbook.yml │ └── 05 │ │ ├── ansible.cfg │ │ ├── external_vault_vars.yml │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── vault_playbook.yml ├── 10 - Creating Custom Modules │ ├── 01 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── icmp.sh │ ├── 02 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── icmp.sh │ ├── 03 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── icmp.sh │ ├── 04 │ │ ├── ansible.cfg │ │ ├── blocks_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── icmp.sh │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── icmp_fail_playbook.yml │ │ ├── icmp_playbook.yml │ │ └── library │ │ │ └── icmp │ ├── 06 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ └── library │ │ │ └── icmp │ ├── 07 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── icmp.py │ │ └── library │ │ │ └── icmp │ └── 08 │ │ ├── ansible.cfg │ │ ├── dynamic_dns_playbook.yml │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ └── library │ │ └── icmp.py └── 11 - Creating Plugins │ ├── 01 │ ├── ansible.cfg │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── lookup_plugins │ │ └── sorted_items.py │ └── sorted_items_playbook.yml │ └── 02 │ ├── ansible.cfg │ ├── filter_plugins │ └── reverse_upper.py │ ├── group_vars │ ├── centos │ ├── dns │ └── ubuntu │ ├── host_vars │ ├── centos1 │ └── ubuntu-c │ ├── hosts │ └── reverse_upper_filter_playbook.yml ├── 04 - Structuring Ansible Playbooks ├── 01 - Using Include and Import │ ├── 01 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── include_playbook.yml │ │ └── play1_task2.yml │ ├── 02 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── include_playbook.yml │ │ ├── play1_task2.yml │ │ ├── play2.yml │ │ └── play2_task2.yml │ ├── 03 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── include_import_playbook.yml │ │ ├── play1_task2.yml │ │ ├── play1_task3.yml │ │ ├── play2.yml │ │ └── play2_task2.yml │ ├── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── import_tasks.yml │ │ ├── include.yml │ │ ├── include_import_playbook.yml │ │ └── include_tasks.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── import_playbook.yml │ │ ├── include_import_playbook.yml │ │ └── include_playbook.yml │ ├── 06 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── include_loop_playbook.yml │ │ └── include_tasks.yml │ └── 07 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── include_tasks.yml │ │ └── include_vars_playbook.yml ├── 02 - Using Tags │ ├── 01 │ │ ├── ansible.cfg │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── nginx_playbook.yml │ │ └── templates │ │ │ └── index.html.j2 │ ├── 02 │ │ ├── ansible.cfg │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── nginx_playbook.yml │ │ └── templates │ │ │ └── index.html.j2 │ ├── 03 │ │ ├── ansible.cfg │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── group_vars │ │ │ ├── centos │ │ │ ├── dns │ │ │ └── ubuntu │ │ ├── host_vars │ │ │ ├── centos1 │ │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── nginx_playbook.yml │ │ └── templates │ │ │ └── index.html.j2 │ └── 04 │ │ ├── ansible.cfg │ │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ │ ├── hosts │ │ ├── import_playbook.yml │ │ ├── include_import_playbook.yml │ │ ├── include_playbook.yml │ │ ├── include_tasks.yml │ │ └── include_tasks_deprecated.yml └── 03 - Using Roles │ ├── 01 │ ├── ansible.cfg │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx_playbook.yml │ └── templates │ │ └── index.html.j2 │ ├── 02 │ ├── ansible.cfg │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── nginx_playbook.yml │ ├── 03 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── nginx_playbook.yml │ ├── 04 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── nginx_awesomeweb_playbook.yml │ ├── 05 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── group_vars │ │ ├── centos │ │ ├── dns │ │ └── ubuntu │ ├── host_vars │ │ ├── centos1 │ │ └── ubuntu-c │ ├── hosts │ ├── nginx │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── nginx_awesomeweb_playbook.yml │ └── 06 │ ├── ansible.cfg │ ├── awesomeweb │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── index.html.j2 │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml │ ├── group_vars │ ├── centos │ ├── dns │ └── ubuntu │ ├── host_vars │ ├── centos1 │ └── ubuntu-c │ ├── hosts │ ├── nginx │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml │ └── nginx_awesomeweb_playbook.yml ├── 05 - Using Ansible with Cloud Services and Containers ├── 01 - AWS with Ansible │ ├── 01 │ │ ├── ansible.cfg │ │ ├── ec2_playbook.yml │ │ └── hosts │ ├── 02 │ │ ├── ansible.cfg │ │ ├── ec2_playbook.yml │ │ └── hosts │ ├── 03 │ │ ├── ansible.cfg │ │ ├── ec2_playbook.yml │ │ └── hosts │ ├── 04 │ │ ├── ansible.cfg │ │ ├── awesomeweb │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── templates │ │ │ │ └── index.html.j2 │ │ │ ├── tests │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── main.yml │ │ ├── ec2_playbook.yml │ │ ├── group_vars │ │ │ └── tag_Name_Ansible │ │ ├── inventory │ │ │ ├── ec2.ini │ │ │ └── ec2.py │ │ └── nginx │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ ├── meta │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ │ └── vars │ │ │ └── main.yml │ ├── 05 │ │ ├── ansible.cfg │ │ ├── awesomeweb │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ │ └── main.yml │ │ │ ├── handlers │ │ │ │ └── main.yml │ │ │ ├── meta │ │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ ├── templates │ │ │ │ └── index.html.j2 │ │ │ ├── tests │ │ │ │ ├── inventory │ │ │ │ └── test.yml │ │ │ └── vars │ │ │ │ └── main.yml │ │ ├── ec2_playbook.yml │ │ ├── group_vars │ │ │ └── tag_Name_Ansible │ │ ├── inventory │ │ │ ├── ec2.ini │ │ │ └── ec2.py │ │ └── nginx │ │ │ ├── README.md │ │ │ ├── defaults │ │ │ └── main.yml │ │ │ ├── files │ │ │ ├── nginx-default.conf │ │ │ └── nginx.conf.centos.patch │ │ │ ├── handlers │ │ │ └── main.yml │ │ │ ├── meta │ │ │ └── main.yml │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ │ └── vars │ │ │ └── main.yml │ └── 06 │ │ ├── ansible.cfg │ │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ │ ├── ec2_playbook.yml │ │ ├── group_vars │ │ └── tag_Name_Ansible │ │ ├── inventory │ │ ├── ec2.ini │ │ └── ec2.py │ │ └── nginx │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml └── 02 - Docker support with Ansible │ ├── 01 │ ├── ansible.cfg │ ├── group_vars │ │ └── docker │ └── hosts │ ├── 02 │ ├── ansible.cfg │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ └── hosts │ ├── 03 │ ├── ansible.cfg │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ └── hosts │ ├── 04 │ ├── ansible.cfg │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ └── hosts │ ├── 05 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ ├── hosts │ └── nginx │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml │ ├── 06 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ ├── hosts │ └── nginx │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml │ ├── 07 │ ├── ansible.cfg │ ├── awesomeweb │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── templates │ │ │ └── index.html.j2 │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── docker_playbook.yml │ ├── group_vars │ │ └── docker │ ├── hosts │ └── nginx │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── files │ │ ├── nginx-default.conf │ │ └── nginx.conf.centos.patch │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml │ └── 08 │ ├── ansible.cfg │ ├── awesomeweb │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ │ └── index.html.j2 │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ │ └── main.yml │ ├── docker_playbook.yml │ ├── group_vars │ └── docker │ ├── hosts │ └── nginx │ ├── README.md │ ├── defaults │ └── main.yml │ ├── files │ ├── nginx-default.conf │ └── nginx.conf.centos.patch │ ├── handlers │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yml │ ├── tests │ ├── inventory │ └── test.yml │ └── vars │ └── main.yml ├── LICENSE ├── README.md └── VMs /01 - Installation and Configuration of Ansible/05 - Validating Ansible Installation/01/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | inventory = hosts 3 | -------------------------------------------------------------------------------- /01 - Installation and Configuration of Ansible/05 - Validating Ansible Installation/01/hosts: -------------------------------------------------------------------------------- 1 | [all] 2 | centos1 3 | -------------------------------------------------------------------------------- /01 - Installation and Configuration of Ansible/05 - Validating Ansible Installation/02/hosts: -------------------------------------------------------------------------------- 1 | [all] 2 | centos1 3 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/01/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/01/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/02/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/02/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/03/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/03/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/04/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/04/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/05/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/05/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/05/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/06/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/06/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/06/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/07/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/07/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/07/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/07/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/08/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/08/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/08/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/08/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/09/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/09/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/09/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/09/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/10/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/10/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/10/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/10/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/11/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/11/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/11/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/11/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/12/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/12/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/12/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/12/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/12/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/12/hosts.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/13/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/13/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts.json -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/13/hosts.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/14/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/14/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts.json -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/01 - Ansible Inventories/14/hosts.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/02 - Ansible Modules/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/02 - Ansible Modules/ansible.cfg -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/02 - Ansible Modules/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/02 - Ansible Modules/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/02 - Ansible Modules/hosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/02 - Ansible Modules/hosts.json -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/02 - Ansible Modules/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/02 - Ansible Modules/hosts.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/01/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/01/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/01/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/01/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/02/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/02/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/02/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/02/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/03/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/03/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/03/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/03/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/04/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/04/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/04/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/04/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/05/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/05/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/05/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/05/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/06/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/06/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/06/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/06/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/07/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/07/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/07/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/07/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/08/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/08/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/08/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/08/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/09/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/09/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/09/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/09/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/10/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/10/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/10/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/10/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/11/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/11/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/11/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/11/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/12/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/12/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/12/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/12/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/13/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/13/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/13/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/13/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/14/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/14/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/14/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/14/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/15/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/15/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/15/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/15/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/16/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/16/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/16/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/16/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/17/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/17/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/17/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/17/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/18/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/18/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/18/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/18/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/19/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/19/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/19/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/19/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/20/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/20/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/20/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/20/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/21/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/21/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/21/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/21/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/22/show_yaml_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/22/show_yaml_python.py -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/03 - YAML/22/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/03 - YAML/22/test.yml -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/02/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/03/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/04/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/05/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/06/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/04 - Ansible Playbooks, Breakdown of sections/07/centos_motd: -------------------------------------------------------------------------------- 1 | Welcome to CentOS Linux - Ansible Rocks 2 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/15/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/15/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/15/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/16/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/16/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/16/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/17/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/17/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/05 - Ansible Playbooks, Variables/17/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/01/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/02/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/03/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/04/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/05/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/06 - Ansible Playbooks, Facts/06/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/01/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/02/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/03/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/04/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/05/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/06/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/07/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/07/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/08/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/08/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/09/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/09/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/09/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/10/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/10/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/10/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/11/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/11/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/11/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/07 - Templating with Jinja2/11/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/02 - Ansible Architecture and Design/07 - Templating with Jinja2/11/hosts -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /02 - Ansible Architecture and Design/08 - Ansible Playbooks, Creating and Executing/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/07/conf.d/defaults: -------------------------------------------------------------------------------- 1 | ## Defaults 2 | 3 | Port 22 4 | Protocol 2 5 | ForwardX11 yes 6 | GSSAPIAuthentication no 7 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/09/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/10/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/11/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/11/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/01 - Ansible Playbook Modules/11/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/02 - Dynamic Inventories/01/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/02 - Dynamic Inventories/02/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/02 - Dynamic Inventories/03/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/02 - Dynamic Inventories/04/ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = False 3 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/02/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/03/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/04/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/05/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/06/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/07/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/08/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/09/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/10/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/10/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/10/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/11/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/11/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/11/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/03 - register and when/11/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/03 - register and when/11/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/motd_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/01/motd_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/motd_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/02/motd_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/motd_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/03/motd_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/motd_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/04/motd_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/05/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/06/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/07/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/08/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/09/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/10/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/11/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/12/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/user_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/13/user_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/custom_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/custom_key -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/custom_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/custom_key.pub -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/14/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/15/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/16/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/17/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/18/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/19/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/random.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo $((1 + RANDOM % 10)) 3 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/until_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/04 - Looping/20/until_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/09/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/09/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/09/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/10/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/10/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/10/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/11/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/11/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/11/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/12/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/12/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/12/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/13/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/13/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/13/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/14/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/14/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/05 - Asynchronous and Parallel Execution/14/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/02/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/03/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/04/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/06 - Task Delegation/05/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/07 - Magic Variables/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/07 - Magic Variables/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/07 - Magic Variables/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/07 - Magic Variables/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/07 - Magic Variables/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/blocks_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/blocks_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/group_vars/dns -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/blocks_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/blocks_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/group_vars/dns -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/02/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/blocks_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/blocks_playbook.yml -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/group_vars/dns -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/group_vars/ubuntu -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/08 - Blocks/03/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/02/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/03/password_file: -------------------------------------------------------------------------------- 1 | password2 2 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/04/password_file: -------------------------------------------------------------------------------- 1 | password2 2 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/ansible.cfg -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/09 - Ansible Vault/05/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/08/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/08/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/10 - Creating Custom Modules/08/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/01/hosts -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/03 - Ansible Playbooks, Advanced Topics/11 - Creating Plugins/02/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/01/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/01/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/02/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/03/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/04/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/05/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/06/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/07/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/07/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/07/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/01 - Using Include and Import/07/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/01 - Using Include and Import/07/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/centos -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/01/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/01/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/centos -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/02/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/02/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/centos -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/03/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/03/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/import_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/import_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/include_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/include_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/02 - Using Tags/04/include_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/02 - Using Tags/04/include_tasks.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/centos -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/01/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/01/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/README.md -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/meta/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx/vars/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/02/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/awesomeweb/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for awesomeweb -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/README.md -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/meta/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/03/nginx_playbook.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/README.md -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/meta/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/04/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/README.md -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/meta/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/05/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/ansible.cfg -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/group_vars/centos: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_user: root 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/group_vars/dns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/group_vars/dns -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/group_vars/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/group_vars/ubuntu -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/host_vars/centos1: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_port: 2222 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/host_vars/ubuntu-c: -------------------------------------------------------------------------------- 1 | --- 2 | ansible_connection: local 3 | ... 4 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/hosts -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/README.md -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/meta/main.yml -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /04 - Structuring Ansible Playbooks/03 - Using Roles/06/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/04/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/04/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/04/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/04/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/04/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/05/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/05/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/05/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/05/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/05/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/06/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/06/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/06/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/06/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/01 - AWS with Ansible/06/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/05/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/05/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/05/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/05/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/05/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/06/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/06/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/06/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/06/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/06/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/07/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/07/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/07/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/07/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/07/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/08/awesomeweb/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for awesomeweb 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/08/awesomeweb/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/08/nginx/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for nginx -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/08/nginx/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /05 - Using Ansible with Cloud Services and Containers/02 - Docker support with Ansible/08/nginx/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for nginx 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/README.md -------------------------------------------------------------------------------- /VMs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Ansible/HEAD/VMs --------------------------------------------------------------------------------