Skip to content

Commit b474dac

Browse files
committed
fix: add no-color to plan output for CI readability
1 parent 6f03b19 commit b474dac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ init: clean .terraform/terraform.tfstate
4242
plan: init .terraform/plan
4343

4444
.terraform/plan:
45-
@${TERRAFORM} plan -compact-warnings -out tfplan.bin
46-
@${TERRAFORM} show tfplan.bin | tee plan-output.txt
45+
@${TERRAFORM} plan -compact-warnings -no-color -out tfplan.bin
46+
@${TERRAFORM} show -no-color tfplan.bin | tee plan-output.txt
4747
@rm -f tfplan.bin
4848

4949
apply: init .terraform/apply

0 commit comments

Comments
 (0)