wbensalah / terraform-lessons

Source Code for Course "Terraform From Beginner to Professional"

Home Page:https://www.udemy.com/rus-terraform/?couponCode=ADV-IT-RUS-TERRAFORM

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Terraform 0.12+ Lessons by Denis Astahov

Set AWS Credentials in Windows PowerShell:

$env:AWS_ACCESS_KEY_ID="xxxxxxxxxxxxxxxxx"
$env:AWS_SECRET_ACCESS_KEY="yyyyyyyyyyyyyyyyyyyyyyyyyyyy"
$env:AWS_DEFAULT_REGION="zzzzzzzzz"

Set AWS Credentials in Linux Shell:

export AWS_ACCESS_KEY_ID="xxxxxxxxxxxxxxxxx"
export AWS_SECRET_ACCESS_KEY="yyyyyyyyyyyyyyyyyyyyyyyyyyyy"
export AWS_DEFAULT_REGION="zzzzzzzzz"

Terraform Commands

terraform init
terraform plan
terraform apply
terraform destroy

terraform show
terraform output
terraform console

About

Source Code for Course "Terraform From Beginner to Professional"

https://www.udemy.com/rus-terraform/?couponCode=ADV-IT-RUS-TERRAFORM


Languages

Language:HCL 96.1%Language:Shell 3.9%