Created
August 21, 2020 01:38
-
-
Save nicerobot/ca030d481c216a96fa6fa19600c2e088 to your computer and use it in GitHub Desktop.
A Makefile for Terraform
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PRECIOUS: output.json terraform.tfplan terraform.tfstate | |
output.json: terraform.tfstate | |
terraform output -no-color -json | tee $@ | |
plan: terraform.tfplan | |
terraform.tfplan: | |
terraform plan -out $@ | |
terraform.tfstate: terraform.tfplan | |
terraform apply $^ | |
apply: terraform.tfstate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment