Try to wrap tf vars in backticks

This commit is contained in:
Andrew Dryga
2023-06-12 15:49:47 -06:00
parent 17b18444a7
commit 36c8fa3beb
2 changed files with 4 additions and 4 deletions

View File

@@ -75,8 +75,8 @@ jobs:
uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0
id: apply-run
env:
TF_VAR_api_image_tag: ${{ github.sha }}
TF_VAR_web_image_tag: ${{ github.sha }}
TF_VAR_api_image_tag: "${{ github.sha }}"
TF_VAR_web_image_tag: "${{ github.sha }}"
with:
workspace: ${{ env.TF_WORKSPACE }}
configuration_version: ${{ steps.apply-upload.outputs.configuration_version_id }}

View File

@@ -47,8 +47,8 @@ jobs:
uses: hashicorp/tfc-workflows-github/actions/create-run@v1.0.0
id: plan-run
env:
TF_VAR_api_image_tag: ${{ github.sha }}
TF_VAR_web_image_tag: ${{ github.sha }}
TF_VAR_api_image_tag: "${{ github.sha }}"
TF_VAR_web_image_tag: "${{ github.sha }}"
with:
workspace: ${{ env.TF_WORKSPACE }}
configuration_version: ${{ steps.plan-upload.outputs.configuration_version_id }}