diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 914692b..883d2e7 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -37,15 +37,15 @@ jobs: - name: Terraform Init run: | terraform init - working-directory: ../../../terraform # Specify the directory containing your Terraform files + working-directory: terraform # Specify the directory containing your Terraform files - name: Terraform Plan run: | terraform plan - working-directory: ../../../terraform + working-directory: terraform - name: Terraform Apply if: github.ref == 'refs/heads/main' run: | terraform apply -auto-approve - working-directory: ../../../terraform + working-directory: terraform