From 173d965ea63ca78e92d8875141adf62fce02c2a1 Mon Sep 17 00:00:00 2001 From: Marques Johansson Date: Mon, 3 Jun 2024 15:08:43 +0000 Subject: [PATCH] remove continue-on-error from terraform apply/destroy steps Signed-off-by: Marques Johansson --- .github/workflows/integration.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f9842e9..4b7deae 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -76,10 +76,8 @@ jobs: - name: Terraform Apply id: apply timeout-minutes: 120 - continue-on-error: true run: terraform apply -input=false tfplan - name: Terraform Destroy - continue-on-error: true id: destroy if: ${{ always() }} run: terraform destroy -input=false -auto-approve