AWS Workshop Challenge
This Repository has been created for 12 Week AWS Workshop Challenge by Prasad Rao
Follow the week by week instructions to get a handson with the AWS Services
These labs are for the learning and hands-on for terraform using VS Code and assume that you have understanding knowledge of AWS services and concepts
Before we will go deep dive to workskop, lets create environment set up. This is one time set up and can be used in future challenge.
Free account in AWS
- Link: https://aws.amazon.com/free/Install VS Code.
- Download link - https://code.visualstudio.com/DownloadInstall Terraform.
- Setup Terraform Locally - https://www.youtube.com/watch?v=ljYzclmsvF4Install AWS CLI.
- Installing AWS CLI - https://www.youtube.com/watch?v=u0JyzUGzvJAConfigure aws cli to be used in Terraform.
- Configure AWS CLI with Terraform - https://www.youtube.com/watch?v=XxTcw7UTues
Important Terraform commands.
terraform init
- This command is used for initialize the terraform.terraform fmt
- This command is used for format the terraform code.terraform validate
- This command is used for validate the terraform code.terraform plan
- This command is used to describe the plan. This is highly recommended to run before apply the changes.terraform apply
- If you are statisfy with changes, run this command to apply the changes. Use -auto-approve to skip the questionterraform destroy
- This command is used to destroy the resources created. Use -auto-approve to skip the question