Pull-mirror of github.com/aws-actions/configure-aws-credentials
  • TypeScript 100%
Find a file
2019-11-01 10:32:13 -07:00
.github Creating initial file from template 2019-10-30 15:33:00 -07:00
.eslintrc.json Add initial implementation 2019-11-01 10:32:13 -07:00
.gitignore Add initial implementation 2019-11-01 10:32:13 -07:00
action.js Add initial implementation 2019-11-01 10:32:13 -07:00
action.yml Add initial implementation 2019-11-01 10:32:13 -07:00
CODE_OF_CONDUCT.md Creating initial file from template 2019-10-30 15:33:01 -07:00
CONTRIBUTING.md Creating initial file from template 2019-10-30 15:33:02 -07:00
index.js Add initial implementation 2019-11-01 10:32:13 -07:00
index.test.js Add initial implementation 2019-11-01 10:32:13 -07:00
jest.config.js Add initial implementation 2019-11-01 10:32:13 -07:00
jest.setup-env.js Add initial implementation 2019-11-01 10:32:13 -07:00
LICENSE Creating initial file from template 2019-10-30 15:32:59 -07:00
package-lock.json Add initial implementation 2019-11-01 10:32:13 -07:00
package.json Add initial implementation 2019-11-01 10:32:13 -07:00
README.md Add build status, usage to README 2019-11-01 10:32:13 -07:00

"Configure AWS Credentials" Action For GitHub Actions

Configure AWS credential environment variables for use in other GitHub Actions.

GitHub Actions status

This action adds configuration required by the AWS CLI for use in subsequent actions.

Usage

Add the following step to your workflow:

    - name: Configure AWS Credentials
      uses: aws/configure-aws-credentials-for-github-actions
      with:
        aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
        aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        aws-default-region: us-east-2
        aws-default-output: json

License Summary

This code is made available under the MIT license.