Skip to content

Instantly share code, notes, and snippets.

@theuves
Last active November 23, 2020 09:37
Show Gist options
  • Save theuves/251d8f57ff9dd364aa386eb4720b7a5c to your computer and use it in GitHub Desktop.
Save theuves/251d8f57ff9dd364aa386eb4720b7a5c to your computer and use it in GitHub Desktop.
Makefile for Terraform.
default: validate init plan apply
validate:
terraform validate
init:
terraform init
plan:
terraform plan
apply:
terraform apply -auto-approve
destroy:
terraform destroy -auto-approve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment