├── Adding-User.md ├── Docker-Module.md ├── Handlers.md ├── Host-Variables.md ├── Implement-First-Playbook.md ├── Important-Modules-Sample-Tasks.md ├── Install-Ansible-Basic-Commands.md ├── LICENSE ├── Managing-Files.md ├── Managing-Services.md ├── Multipass-SSH-Configuration.md ├── README.md ├── Refactoring-Playbook.md ├── Roles.md ├── Tags.md ├── Targeting-Specific-Node.md ├── Templates.md └── ansible_lab_files ├── ansible.cfg ├── docker_play.yml ├── files ├── default_site.html └── sudoer_newuser111 ├── inventory ├── roles ├── base │ ├── handlers │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ └── templates │ │ └── sshd_config_ubuntu.j2 ├── database_servers │ └── tasks │ │ └── main.yml └── web_servers │ ├── files │ └── default_site.html │ ├── handlers │ └── main.yml │ └── tasks │ └── main.yml ├── site.yml └── site_before_role.yml /Adding-User.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Adding-User.md -------------------------------------------------------------------------------- /Docker-Module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Docker-Module.md -------------------------------------------------------------------------------- /Handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Handlers.md -------------------------------------------------------------------------------- /Host-Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Host-Variables.md -------------------------------------------------------------------------------- /Implement-First-Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Implement-First-Playbook.md -------------------------------------------------------------------------------- /Important-Modules-Sample-Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Important-Modules-Sample-Tasks.md -------------------------------------------------------------------------------- /Install-Ansible-Basic-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Install-Ansible-Basic-Commands.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/LICENSE -------------------------------------------------------------------------------- /Managing-Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Managing-Files.md -------------------------------------------------------------------------------- /Managing-Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Managing-Services.md -------------------------------------------------------------------------------- /Multipass-SSH-Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Multipass-SSH-Configuration.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/README.md -------------------------------------------------------------------------------- /Refactoring-Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Refactoring-Playbook.md -------------------------------------------------------------------------------- /Roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Roles.md -------------------------------------------------------------------------------- /Tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Tags.md -------------------------------------------------------------------------------- /Targeting-Specific-Node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Targeting-Specific-Node.md -------------------------------------------------------------------------------- /Templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/Templates.md -------------------------------------------------------------------------------- /ansible_lab_files/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/ansible.cfg -------------------------------------------------------------------------------- /ansible_lab_files/docker_play.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/docker_play.yml -------------------------------------------------------------------------------- /ansible_lab_files/files/default_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/files/default_site.html -------------------------------------------------------------------------------- /ansible_lab_files/files/sudoer_newuser111: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/files/sudoer_newuser111 -------------------------------------------------------------------------------- /ansible_lab_files/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/inventory -------------------------------------------------------------------------------- /ansible_lab_files/roles/base/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/base/handlers/main.yml -------------------------------------------------------------------------------- /ansible_lab_files/roles/base/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/base/tasks/main.yml -------------------------------------------------------------------------------- /ansible_lab_files/roles/base/templates/sshd_config_ubuntu.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/base/templates/sshd_config_ubuntu.j2 -------------------------------------------------------------------------------- /ansible_lab_files/roles/database_servers/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/database_servers/tasks/main.yml -------------------------------------------------------------------------------- /ansible_lab_files/roles/web_servers/files/default_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/web_servers/files/default_site.html -------------------------------------------------------------------------------- /ansible_lab_files/roles/web_servers/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/web_servers/handlers/main.yml -------------------------------------------------------------------------------- /ansible_lab_files/roles/web_servers/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/roles/web_servers/tasks/main.yml -------------------------------------------------------------------------------- /ansible_lab_files/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/site.yml -------------------------------------------------------------------------------- /ansible_lab_files/site_before_role.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omerbsezer/Fast-Ansible/HEAD/ansible_lab_files/site_before_role.yml --------------------------------------------------------------------------------