├── .gitattributes ├── .gitignore ├── .kitchen.yml ├── Gemfile ├── LICENSE.md ├── README.md ├── ansible.cfg ├── default.yml ├── group_vars └── apache-servers ├── inventory ├── dyn_inv.py ├── hosts_ssh └── hosts_vagrant ├── requirements.yml ├── spec └── spec_helper.rb └── test └── integration └── ansible └── serverspec └── apache_spec.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/.gitignore -------------------------------------------------------------------------------- /.kitchen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/.kitchen.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | #[defaults] 2 | #remote_port = 2200 -------------------------------------------------------------------------------- /default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/default.yml -------------------------------------------------------------------------------- /group_vars/apache-servers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/group_vars/apache-servers -------------------------------------------------------------------------------- /inventory/dyn_inv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/inventory/dyn_inv.py -------------------------------------------------------------------------------- /inventory/hosts_ssh: -------------------------------------------------------------------------------- 1 | [apache-servers] 2 | 52.16.196.201:22 -------------------------------------------------------------------------------- /inventory/hosts_vagrant: -------------------------------------------------------------------------------- 1 | [apache-servers] 2 | 172.28.128.7:22 -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- 1 | # from galaxy 2 | - src: geerlingguy.apache 3 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test/integration/ansible/serverspec/apache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neillturner/ansible_repo/HEAD/test/integration/ansible/serverspec/apache_spec.rb --------------------------------------------------------------------------------