We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 196e814 commit b53ad87Copy full SHA for b53ad87
.github/workflows/terraform-plan.yml
@@ -172,9 +172,10 @@ jobs:
172
working-directory: ./terraform/prod
173
run: |
174
set +e
175
- terraform plan -no-color -detailed-exitcode > >(tee plan_full.txt) 2> >(tee plan_full.txt >&2)
+ terraform plan -no-color -detailed-exitcode > plan_full.txt 2>&1
176
exit_code=$?
177
set -e
178
+ cat plan_full.txt
179
180
resource_summary=$(grep -E '^(# | [~+\-])' plan_full.txt | head -n 50)
181
plan_summary=$(grep -E '^Plan:' plan_full.txt)
0 commit comments