diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index 23cc4d71..899ab0e3 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -23,19 +23,25 @@ jobs: uses: hashicorp/setup-terraform@v3 - name: Terraform Init - working-directory: ./infrastructure/terraform/shared/ + working-directory: ./infrastructure/terraform shell: bash - run: terraform init -reconfigure + run: | + cd shared + terraform init -reconfigure - name: Terraform Workspace - working-directory: ./infrastructure/terraform/shared/ + working-directory: ./infrastructure/terraform shell: bash - run: terraform workspace select dev || terraform workspace new dev + run: | + cd shared + terraform workspace select dev || terraform workspace new dev - name: Terraform Plan (shared) - working-directory: ./infrastructure/terraform/shared/ + working-directory: ./infrastructure/terraform shell: bash - run: terraform plan -var-file=dev.tfvars -out=tfplan + run: | + cd shared + terraform plan -var-file=dev.tfvars -out=tfplan # - name: Terraform Apply # working-directory: ./infrastructure/terraform/shared