Skip to content

Commit

Permalink
Use ${{ secrets.VARIABLE_NAME }} for Github Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Carlucci committed Nov 21, 2023
1 parent 31c4dc6 commit 29bd02e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Configure AWS credentials
uses: aws-actions/[email protected]
with:
role-to-assume: $AWS_ASSUME_ROLE_ARN
role-to-assume: ${{ secrets.AWS_ASSUME_ROLE_ARN }}
role-session-name: github-aws-oidc
aws-region: $AWS_REGION
aws-region: ${{ env.AWS_REGION }}
# TODO: simple API call for now; replace with Terraform plan/apply
- name: Sts GetCallerIdentity
run: |
Expand Down

0 comments on commit 29bd02e

Please sign in to comment.