├── .circleci └── config.yml ├── .github └── workflows │ └── manual.yml ├── CODEOWNERS ├── README.md ├── ansible.cfg ├── bucket.yml ├── cloudfront.yml ├── error.html ├── index.html ├── inventory.txt ├── main1.yml ├── main2.yml ├── main3.yml ├── main4.yml ├── roles ├── apache │ ├── files │ │ └── index.html │ └── tasks │ │ └── main.yml ├── configure-server │ └── tasks │ │ └── main.yml ├── prepare │ └── tasks │ │ └── main.yml ├── print │ └── tasks │ │ └── main.yml └── setup │ ├── files │ └── index.js │ └── tasks │ ├── main-yum.yml │ └── main.yml └── template.yml /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- 1 | [defaults] 2 | host_key_checking = false -------------------------------------------------------------------------------- /bucket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/bucket.yml -------------------------------------------------------------------------------- /cloudfront.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/cloudfront.yml -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/error.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/index.html -------------------------------------------------------------------------------- /inventory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/inventory.txt -------------------------------------------------------------------------------- /main1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/main1.yml -------------------------------------------------------------------------------- /main2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/main2.yml -------------------------------------------------------------------------------- /main3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/main3.yml -------------------------------------------------------------------------------- /main4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/main4.yml -------------------------------------------------------------------------------- /roles/apache/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/apache/files/index.html -------------------------------------------------------------------------------- /roles/apache/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/apache/tasks/main.yml -------------------------------------------------------------------------------- /roles/configure-server/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/configure-server/tasks/main.yml -------------------------------------------------------------------------------- /roles/prepare/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/prepare/tasks/main.yml -------------------------------------------------------------------------------- /roles/print/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/print/tasks/main.yml -------------------------------------------------------------------------------- /roles/setup/files/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/setup/files/index.js -------------------------------------------------------------------------------- /roles/setup/tasks/main-yum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/setup/tasks/main-yum.yml -------------------------------------------------------------------------------- /roles/setup/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/roles/setup/tasks/main.yml -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c3-hello-world-exercise-solution/HEAD/template.yml --------------------------------------------------------------------------------