Skip to content

Commit

Permalink
chore: Fix acceptance tests env variable names (#170)
Browse files Browse the repository at this point in the history
## Motivation

Set empty string instead of nil to "cheat" Terraform into thinking we
did provide required variable (even though we didn't).
  • Loading branch information
nieomylnieja authored Feb 15, 2024
1 parent 6964452 commit 07a2c7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/acc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
cache: false
- name: Run acceptance tests
env:
TERRAFORM_NOBL9_CLIENT_ID: "${{ inputs.clientId }}"
TERRAFORM_NOBL9_CLIENT_SECRET: "${{ secrets.clientSecret }}"
NOBL9_CLIENT_ID: "${{ inputs.clientId }}"
NOBL9_CLIENT_SECRET: "${{ secrets.clientSecret }}"
TERRAFORM_NOBL9_OKTA_ORG_URL: "${{ inputs.oktaOrgUrl }}"
TERRAFORM_NOBL9_OKTA_AUTH_SERVER: "${{ inputs.oktaAuthServer }}"
TERRAFORM_NOBL9_PROJECT: "${{ inputs.project }}"
Expand Down

0 comments on commit 07a2c7e

Please sign in to comment.