Skip to content

Commit b53ad87

Browse files
committed
fix: 스크립트 출력 수정
1 parent 196e814 commit b53ad87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/terraform-plan.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,10 @@ jobs:
172172
working-directory: ./terraform/prod
173173
run: |
174174
set +e
175-
terraform plan -no-color -detailed-exitcode > >(tee plan_full.txt) 2> >(tee plan_full.txt >&2)
175+
terraform plan -no-color -detailed-exitcode > plan_full.txt 2>&1
176176
exit_code=$?
177177
set -e
178+
cat plan_full.txt
178179
179180
resource_summary=$(grep -E '^(# | [~+\-])' plan_full.txt | head -n 50)
180181
plan_summary=$(grep -E '^Plan:' plan_full.txt)

0 commit comments

Comments
 (0)