We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5650823 commit db13e23Copy full SHA for db13e23
Makefile
@@ -42,9 +42,9 @@ init: clean .terraform/terraform.tfstate
42
plan: init .terraform/plan
43
44
.terraform/plan:
45
- @${TERRAFORM} plan -compact-warnings -no-color -out tfplan.bin
46
- @${TERRAFORM} show -no-color tfplan.bin | tee plan-output.txt
47
- @rm -f tfplan.bin
+ @${TERRAFORM} plan -compact-warnings -no-color -out /tmp/tfplan.bin
+ @${TERRAFORM} show -no-color /tmp/tfplan.bin | tee plan-output.txt
+ @rm -f /tmp/tfplan.bin
48
49
apply: init .terraform/apply
50
0 commit comments