fix spelling #2
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: AWS Role Test | |
| on: | |
| push: | |
| branches: | |
| - dev-actions | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| test-aws-role-access: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v4 | |
| - name: AWS config | |
| uses: aws-actions/configure-aws-credentials@v3 | |
| with: | |
| role-to-assume: ${{ secrets.AWS_DEV_ROLE }} | |
| role-session-name: GithubNGAGeointSession | |
| aws-region: ${{ secrets.AWS_DEV_REGION }} | |
| - name: TEST ECR Access | |
| run: aws ecr describe-repositories | |
| - name: TEST ECS Access | |
| run: aws ecs list-clusters |