Skip to content

Instantly share code, notes, and snippets.

@eesa1980
Last active August 1, 2022 06:53
Show Gist options
  • Save eesa1980/f4e949628409cba7a10913b69653d7f7 to your computer and use it in GitHub Desktop.
Save eesa1980/f4e949628409cba7a10913b69653d7f7 to your computer and use it in GitHub Desktop.
Terraform notes #terraform

Start terraform project

terraform init

Terraform plan (shows what terraform is planning to do)

terraform plan -out <file_name>

Apply the plan (Deploy to AWS)

terraform apply <file_name>

Destroy (delete deployed plan)

terraform destroy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment