├── README.md ├── assets ├── AWS.png ├── Azure.png ├── Docker.png ├── GCP.png ├── Terraform.png └── Terraform_background.jpg ├── day01 └── tasks.md ├── day02 └── tasks.md ├── day03 └── tasks.md ├── day04 ├── backend_demo │ ├── providers.tf │ ├── resources.tf │ └── terraform.tf ├── backend_infra │ ├── providers.tf │ ├── resources.tf │ ├── terraform.tf │ └── variables.tf └── tasks.md ├── day05 └── tasks.md ├── day06 └── tasks.md └── day07 └── tasks.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/README.md -------------------------------------------------------------------------------- /assets/AWS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/AWS.png -------------------------------------------------------------------------------- /assets/Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/Azure.png -------------------------------------------------------------------------------- /assets/Docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/Docker.png -------------------------------------------------------------------------------- /assets/GCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/GCP.png -------------------------------------------------------------------------------- /assets/Terraform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/Terraform.png -------------------------------------------------------------------------------- /assets/Terraform_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/assets/Terraform_background.jpg -------------------------------------------------------------------------------- /day01/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day01/tasks.md -------------------------------------------------------------------------------- /day02/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day02/tasks.md -------------------------------------------------------------------------------- /day03/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day03/tasks.md -------------------------------------------------------------------------------- /day04/backend_demo/providers.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /day04/backend_demo/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/backend_demo/resources.tf -------------------------------------------------------------------------------- /day04/backend_demo/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/backend_demo/terraform.tf -------------------------------------------------------------------------------- /day04/backend_infra/providers.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /day04/backend_infra/resources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/backend_infra/resources.tf -------------------------------------------------------------------------------- /day04/backend_infra/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/backend_infra/terraform.tf -------------------------------------------------------------------------------- /day04/backend_infra/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/backend_infra/variables.tf -------------------------------------------------------------------------------- /day04/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day04/tasks.md -------------------------------------------------------------------------------- /day05/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day05/tasks.md -------------------------------------------------------------------------------- /day06/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day06/tasks.md -------------------------------------------------------------------------------- /day07/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/TerraWeek/HEAD/day07/tasks.md --------------------------------------------------------------------------------