gitextract_ofkpwayz/ ├── .gitignore ├── .mdlrc ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE ├── PHILOSOPHY.md ├── README.md ├── Vagrantfile ├── _config.yml ├── _layouts/ │ └── default.html ├── assets/ │ └── css/ │ ├── ansible.css │ └── style.scss ├── decks/ │ ├── README.md │ ├── ansible-best-practices.html │ ├── ansible-essentials.html │ ├── ansible_basics.html │ ├── contributing-to-ansible.html │ ├── css/ │ │ └── theme/ │ │ └── ansible.css │ ├── intro-to-ansible-tower.html │ ├── plugin/ │ │ └── notes/ │ │ ├── notes.html │ │ └── notes.js │ └── your_first_pb.html ├── examples/ │ ├── README.md │ ├── apache-basic-playbook/ │ │ ├── README.md │ │ ├── site.yml │ │ └── templates/ │ │ ├── httpd.conf.j2 │ │ └── index.html.j2 │ ├── apache-role/ │ │ ├── README.md │ │ ├── roles/ │ │ │ └── apache-simple/ │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ ├── templates/ │ │ │ │ ├── httpd.conf.j2 │ │ │ │ └── index.html.j2 │ │ │ └── vars/ │ │ │ └── main.yml │ │ └── site.yml │ ├── apache-simple-playbook/ │ │ ├── README.md │ │ ├── files/ │ │ │ └── index.html │ │ └── site.yml │ ├── cloud-aws/ │ │ ├── README.md │ │ ├── provision.yml │ │ ├── setup.yml │ │ └── site.yml │ ├── nginx-basic-playbook/ │ │ ├── README.md │ │ ├── site.yml │ │ └── templates/ │ │ ├── index.html.j2 │ │ └── nginx.conf.j2 │ ├── nginx-remove-playbook/ │ │ ├── README.md │ │ └── site.yml │ ├── nginx-role/ │ │ ├── README.md │ │ ├── remove.yml │ │ ├── roles/ │ │ │ └── nginx-simple/ │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ ├── main.yml │ │ │ │ └── remove.yml │ │ │ ├── templates/ │ │ │ │ ├── index.html.j2 │ │ │ │ └── nginx.conf.j2 │ │ │ └── vars/ │ │ │ └── main.yml │ │ └── site.yml │ └── nginx-simple-playbook/ │ ├── README.md │ ├── files/ │ │ └── index.html │ └── site.yml ├── facilitator/ │ ├── README.md │ └── solutions/ │ ├── adhoc_commands.md │ ├── ansible_install.md │ ├── basic_playbook.md │ ├── roles.md │ ├── simple_playbook.md │ ├── tower_basic_setup.md │ └── tower_install.md ├── guides/ │ ├── README.md │ ├── ansible_engine/ │ │ ├── 1-adhoc/ │ │ │ └── README.md │ │ ├── 2-playbook/ │ │ │ └── README.md │ │ ├── 3-variables/ │ │ │ └── README.md │ │ ├── 4-role/ │ │ │ └── README.md │ │ └── README.md │ └── ansible_tower/ │ ├── 1-install/ │ │ └── README.md │ ├── 2-config/ │ │ └── README.md │ ├── 3-create/ │ │ └── README.md │ └── README.md ├── tools/ │ ├── aws_lab_setup/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── aws-directions/ │ │ │ └── AWSHELP.md │ │ ├── inventory/ │ │ │ ├── ec2.ini │ │ │ ├── ec2.py │ │ │ └── group_vars/ │ │ │ └── all.yml │ │ ├── provision_lab.yml │ │ ├── roles/ │ │ │ ├── common/ │ │ │ │ ├── defaults/ │ │ │ │ │ └── main.yml │ │ │ │ ├── handlers/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ ├── RedHat.yml │ │ │ │ │ ├── Ubuntu.yml │ │ │ │ │ └── main.yml │ │ │ │ └── vars/ │ │ │ │ ├── RedHat-6.yml │ │ │ │ ├── RedHat-7.yml │ │ │ │ ├── Ubuntu-14.yml │ │ │ │ └── Ubuntu-16.yml │ │ │ ├── control_node/ │ │ │ │ ├── defaults/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ └── main.yml │ │ │ │ └── templates/ │ │ │ │ ├── ansible.cfg.j2 │ │ │ │ └── vimrc.j2 │ │ │ ├── email/ │ │ │ │ ├── defaults/ │ │ │ │ │ └── main.yml │ │ │ │ └── tasks/ │ │ │ │ └── main.yml │ │ │ ├── manage_ec2_instances/ │ │ │ │ ├── defaults/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ ├── create.yml │ │ │ │ │ ├── main.yml │ │ │ │ │ ├── provision.yml │ │ │ │ │ └── teardown.yml │ │ │ │ ├── templates/ │ │ │ │ │ └── instances.txt.j2 │ │ │ │ └── vars/ │ │ │ │ └── main.yml │ │ │ └── user_accounts/ │ │ │ ├── defaults/ │ │ │ │ └── main.yml │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── sample-users.yml │ │ └── teardown_lab.yml │ ├── inventory_import/ │ │ ├── README.md │ │ └── inventory_import.yml │ └── lightbulb-from-tower/ │ └── README.md └── workshops/ ├── README.md ├── ansible_engine/ │ ├── README.md │ ├── adhoc_commands/ │ │ └── README.md │ ├── ansible_install/ │ │ └── README.md │ ├── basic_playbook/ │ │ ├── README.md │ │ └── resources/ │ │ ├── index.html.j2 │ │ └── nginx.conf.j2 │ ├── roles/ │ │ └── README.md │ └── simple_playbook/ │ ├── README.md │ └── resources/ │ └── index.html └── ansible_tower/ ├── README.md ├── tower_basic_setup/ │ └── README.md └── tower_install/ └── README.md