├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── base_web_app └── main.tf ├── commands ├── m1_commands.sh ├── m3_commands.sh ├── m4_commands.sh ├── m5_commands.sh └── m6_commands.sh ├── m4_solution ├── main.tf ├── output.tf ├── terraform.tfvars └── variables.tf ├── m5_solution ├── locals.tf ├── main.tf ├── output.tf ├── templates │ └── startup_script.tpl ├── terraform.tfvars └── variables.tf ├── m6_solution ├── locals.tf ├── main.tf ├── output.tf ├── templates │ └── startup_script.tpl ├── terraform.tf ├── terraform.tfvars └── variables.tf └── s3_bucket_create ├── main.tf ├── outputs.tf ├── terraform.tf ├── terraform.tfvars.example └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/README.md -------------------------------------------------------------------------------- /base_web_app/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/base_web_app/main.tf -------------------------------------------------------------------------------- /commands/m1_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/commands/m1_commands.sh -------------------------------------------------------------------------------- /commands/m3_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/commands/m3_commands.sh -------------------------------------------------------------------------------- /commands/m4_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/commands/m4_commands.sh -------------------------------------------------------------------------------- /commands/m5_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/commands/m5_commands.sh -------------------------------------------------------------------------------- /commands/m6_commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/commands/m6_commands.sh -------------------------------------------------------------------------------- /m4_solution/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m4_solution/main.tf -------------------------------------------------------------------------------- /m4_solution/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m4_solution/output.tf -------------------------------------------------------------------------------- /m4_solution/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m4_solution/terraform.tfvars -------------------------------------------------------------------------------- /m4_solution/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m4_solution/variables.tf -------------------------------------------------------------------------------- /m5_solution/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/locals.tf -------------------------------------------------------------------------------- /m5_solution/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/main.tf -------------------------------------------------------------------------------- /m5_solution/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/output.tf -------------------------------------------------------------------------------- /m5_solution/templates/startup_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/templates/startup_script.tpl -------------------------------------------------------------------------------- /m5_solution/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/terraform.tfvars -------------------------------------------------------------------------------- /m5_solution/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m5_solution/variables.tf -------------------------------------------------------------------------------- /m6_solution/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/locals.tf -------------------------------------------------------------------------------- /m6_solution/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/main.tf -------------------------------------------------------------------------------- /m6_solution/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/output.tf -------------------------------------------------------------------------------- /m6_solution/templates/startup_script.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/templates/startup_script.tpl -------------------------------------------------------------------------------- /m6_solution/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/terraform.tf -------------------------------------------------------------------------------- /m6_solution/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/terraform.tfvars -------------------------------------------------------------------------------- /m6_solution/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/m6_solution/variables.tf -------------------------------------------------------------------------------- /s3_bucket_create/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/s3_bucket_create/main.tf -------------------------------------------------------------------------------- /s3_bucket_create/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/s3_bucket_create/outputs.tf -------------------------------------------------------------------------------- /s3_bucket_create/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/s3_bucket_create/terraform.tf -------------------------------------------------------------------------------- /s3_bucket_create/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/s3_bucket_create/terraform.tfvars.example -------------------------------------------------------------------------------- /s3_bucket_create/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ned1313/Getting-Started-Terraform/HEAD/s3_bucket_create/variables.tf --------------------------------------------------------------------------------