Posts

Showing posts from 2018

Infrastructure Automation With Terraform

Github repository https://github.com/jasvinder-aulakh/terraform-course.git Use the download button on the Github website (zip) or git clone this repository AWS Setup: Make sure you have installed the AWS CLI if you use my vagrant devops-box it is included by default:   https://github.com/jasvinder-aulakh/devops-box.git Useful Commands $ terraform plan                                  # plan $ terraform apply                                 # shortcut for plan & apply - avoid this in production $ terraform plan -out out.terraform      # terraform plan and write the plan to out file $ terraform apply out.terraform            # apply terraform plan using out file $ terraform show ...