Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit 4d37f74

Browse files
committed
Keep env variables upper case as it's what GitHub only supports
1 parent 26c4a91 commit 4d37f74

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/gitops.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
id: infrastructure-deployment
2626
uses: microsoft/nubesgen-actions/gitops-apply-terraform@v0.12.2
2727
env:
28-
TF_VAR_application_name: ${{ vars.TF_VAR_application_name }}
29-
TF_VAR_container_certificate: ${{ secrets.TF_VAR_container_certificate }}
30-
TF_VAR_container_certificate_password: ${{ secrets.TF_VAR_container_certificate_password }}
28+
TF_VAR_application_name: ${{ vars.TF_VAR_APPLICATION_NAME }}
29+
TF_VAR_container_certificate: ${{ secrets.TF_VAR_CONTAINER_CERTIFICATE }}
30+
TF_VAR_container_certificate_password: ${{ secrets.TF_VAR_CONTAINER_CERTIFICATE_PASSWORD }}
3131
with:
3232
azure_credentials: ${{ secrets.AZURE_CREDENTIALS }}
3333
tf_storage_account: ${{ secrets.TF_STORAGE_ACCOUNT }}

0 commit comments

Comments
 (0)