From 767aaaf192476012a221389117152c9526649c4c Mon Sep 17 00:00:00 2001 From: Jared Holgate Date: Fri, 22 Nov 2024 10:04:03 +0000 Subject: [PATCH] Fix test --- .github/workflows/end-to-end-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/end-to-end-test.yml b/.github/workflows/end-to-end-test.yml index 072b259..9c1d764 100644 --- a/.github/workflows/end-to-end-test.yml +++ b/.github/workflows/end-to-end-test.yml @@ -77,9 +77,9 @@ - name: Run Plan run: | - terraform init - terraform plan -var-file=${{ matrix.configFilePath }} -out=tfplan - terraform show -json tfplan > tfplan.json + terraform init -chdir="${{ matrix.directory }}" + terraform plan -chdir="${{ matrix.directory }}" -var-file="${{ matrix.configFilePath }}" -out=tfplan + terraform show -chdir="${{ matrix.directory }}" -json tfplan > tfplan.json shell: pwsh env: