Skip to content

Instantly share code, notes, and snippets.

@roujdami
Last active May 16, 2020 09:30
Show Gist options
  • Save roujdami/a7aa09a0d2f27bc6b680b58e99f51b0f to your computer and use it in GitHub Desktop.
Save roujdami/a7aa09a0d2f27bc6b680b58e99f51b0f to your computer and use it in GitHub Desktop.

Useful commands line

$ 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                      # show current state
$ cat terraform.tfstate               # show state in JSON format
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment