Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkershner6/create-aws-profile-action
A GitHub action to setup an AWS profile
https://github.com/dkershner6/create-aws-profile-action
Last synced: 29 days ago
JSON representation
A GitHub action to setup an AWS profile
- Host: GitHub
- URL: https://github.com/dkershner6/create-aws-profile-action
- Owner: dkershner6
- License: apache-2.0
- Created: 2024-02-08T03:57:44.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-29T00:19:07.000Z (5 months ago)
- Last Synced: 2024-06-29T01:33:30.602Z (5 months ago)
- Language: TypeScript
- Size: 607 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Create AWS Profile GitHub Action
A GitHub action to setup an AWS profile on the file system.
## Inputs
### `key`
**Required** The AWS key
### `secret`
**Required** The AWS secret
### `region`
**Required** The AWS region
### `profile`
**Required** The name of the profile you want to create
### `sessionToken`
**Optional** The AWS session token
### `awsConfigDir`
**Optional** The directory/folder where the AWS files will be saved
## Example usage
```
uses: dkershner6/create-aws-profile-action@v1
with:
profile: staging
region: us-west-1
key: xxx
secret: xxx
sessionToken: xxx
aws_config_dir: /path/to/my/.aws
```## Credit
Initial code shamelessly stolen from [Fooji](https://github.com/Fooji/create-aws-profile-action)