From 87ab3f5eb15e9eb7c16fee9a2df8b7fadd1ced5b Mon Sep 17 00:00:00 2001 From: John Collinson Date: Mon, 9 Sep 2024 12:51:33 +0100 Subject: [PATCH] Removed backend config left in error. --- .github/workflows/ci-pipeline.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pipeline.yaml b/.github/workflows/ci-pipeline.yaml index 2437799..a0351fb 100644 --- a/.github/workflows/ci-pipeline.yaml +++ b/.github/workflows/ci-pipeline.yaml @@ -26,7 +26,7 @@ jobs: with: terraform_version: 1.5.0 - - name: Ensure backend configuration + - name: Ensure local backend run: | echo 'terraform { backend "local" { @@ -35,7 +35,7 @@ jobs: }' > infrastructure/backend.tf - name: Terraform Init - run: terraform init -backend-config=backend-local.tf + run: terraform init working-directory: infrastructure - name: Terraform Validate