From 30a688a15930582ad2b1e8c70302d4802b961f6a Mon Sep 17 00:00:00 2001 From: miampf Date: Mon, 29 Jan 2024 16:52:42 +0100 Subject: [PATCH] dont silent terraform output --- .github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh index 87ce503e2..65f910cff 100755 --- a/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh +++ b/.github/actions/e2e_cleanup_timeframe/e2e-cleanup.sh @@ -11,14 +11,14 @@ function download_tfstate_artifact { function delete_resources { cd $1/constellation-terraform - terraform destroy -auto-approve &>/dev/null + terraform destroy -auto-approve cd ../../ echo delete $1 } function delete_iam_config { cd $1/constellation-iam-terraform - terraform destroy -auto-approve &>/dev/null + terraform destroy -auto-approve cd ../../ echo delete iam $1 }