Skip to content

Commit

Permalink
Add AWS credentials to run tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Mar 26, 2024
1 parent 7342e70 commit 6ab0f0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:
jobs:
terraform:
runs-on: ubuntu-latest
name: Acceptance (Terraform ${{ matrix.terraform_version }})
name: Integration (Terraform ${{ matrix.terraform_version }})

strategy:
fail-fast: false
Expand Down Expand Up @@ -72,13 +72,13 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ env.AWS_REGION }}
AWS_REGION: ${{ vars.AWS_REGION }}
run: |
cd tests && TF_PATH=$(which terraform) make
opentofu:
runs-on: ubuntu-latest
name: Acceptance (OpenTofu ${{ matrix.opentofu_version }})
name: Integration (OpenTofu ${{ matrix.opentofu_version }})

strategy:
fail-fast: false
Expand Down Expand Up @@ -126,6 +126,6 @@ jobs:
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: ${{ env.AWS_REGION }}
AWS_REGION: ${{ vars.AWS_REGION }}
run: |
cd tests && TF_PATH=$(which tofu) make

0 comments on commit 6ab0f0c

Please sign in to comment.