From f527e32c571991155b3d80b5b568b97c4cba18a3 Mon Sep 17 00:00:00 2001 From: Claudia Beresford Date: Fri, 15 Oct 2021 14:11:34 +0100 Subject: [PATCH] Do not setup terraform with this wrapper thing The wrapper manipulates stdout and stderr so that it is compatible with Github action pipelines. Unfortunately, that makes it fail when you want to process the terraform output yourself, so we have to disable it or the tests will fail. --- .github/workflows/nightly_e2e.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nightly_e2e.yml b/.github/workflows/nightly_e2e.yml index 140a5b9ad..3a07f3574 100644 --- a/.github/workflows/nightly_e2e.yml +++ b/.github/workflows/nightly_e2e.yml @@ -15,7 +15,8 @@ jobs: go-version: '^1.16.2' - uses: hashicorp/setup-terraform@v1 with: - terraform_version: 1.0.1 + terraform_version: 1.0.9 + terraform_wrapper: false - name: Run tests run: make test-e2e env: