Skip to content

Commit

Permalink
fix: secret -> env
Browse files Browse the repository at this point in the history
Signed-off-by: chjmil <christopher.miller@sas.com>
  • Loading branch information
saschjmil committed Feb 7, 2025
1 parent 32e820e commit 79c63ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
working-directory: test
run: |
mkdir ~/.ssh
echo "${{ terraformSecrets.SSH_GITHUB }}" > ~/.ssh/id_rsa.pub
echo "${{ env.SSH_GITHUB }}" > ~/.ssh/id_rsa.pub
chmod 600 ~/.ssh/id_rsa.pub
- name: Run Tests
working-directory: test
Expand All @@ -35,11 +35,11 @@ jobs:
terratest_log_parser -testlog test_output.log -outputdir test_output
env:
# TF ENVIRONMENT
TF_VAR_subscription_id: "${{ terraformSecrets.TF_VAR_SUBSCRIPTION_ID }}"
TF_VAR_tenant_id: "${{ terraformSecrets.TF_VAR_TENANT_ID }}"
TF_VAR_client_id: "${{ terraformSecrets.TF_VAR_CLIENT_ID }}"
TF_VAR_client_secret: "${{ terraformSecrets.TF_VAR_CLIENT_SECRET }}"
TF_VAR_public_cidrs: "${{ terraformSecrets.TF_VAR_PUBLIC_ACCESS_CIDRS }}"
TF_VAR_subscription_id: "${{ env.TF_VAR_SUBSCRIPTION_ID }}"
TF_VAR_tenant_id: "${{ env.TF_VAR_TENANT_ID }}"
TF_VAR_client_id: "${{ env.TF_VAR_CLIENT_ID }}"
TF_VAR_client_secret: "${{ env.TF_VAR_CLIENT_SECRET }}"
TF_VAR_public_cidrs: "${{ env.TF_VAR_PUBLIC_ACCESS_CIDRS }}"
- name: Show Test Results log
working-directory: test
run: |
Expand Down

0 comments on commit 79c63ac

Please sign in to comment.