Skip to content

Commit

Permalink
Add new env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
vcerenu committed Nov 6, 2024
1 parent befa99f commit d3edfdc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deployment-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ permissions:
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout

env:
AWS_REGION: us-east-1

jobs:
EKS_deployment_test:
runs-on: ubuntu-20.04
Expand All @@ -27,7 +30,7 @@ jobs:
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
aws-region: "${{ secrets.AWS_REGION }}"
aws-region: "${{ env.AWS_REGION }}"

- name: Install eksctl
run: |
Expand Down

0 comments on commit d3edfdc

Please sign in to comment.