Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DmitriyLyalyuev/awscreds
Store AWS credentials into MacOS Keychain
https://github.com/DmitriyLyalyuev/awscreds
Last synced: 3 months ago
JSON representation
Store AWS credentials into MacOS Keychain
- Host: GitHub
- URL: https://github.com/DmitriyLyalyuev/awscreds
- Owner: DmitriyLyalyuev
- License: mit
- Created: 2019-10-04T15:07:09.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-30T06:27:27.000Z (over 3 years ago)
- Last Synced: 2024-07-09T12:52:18.073Z (4 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-sysadmin-tools - awscreds - Store AWS credentials inside your Keychain (Infrastructure / Amazon Web Services)
README
# Store AWS credentials inside your Keychain
## Installing
The easiest way to install `awscreds` is to use pip3:
$ pip3 install awscreds
or from sources:
$ git clone https://github.com/DmitriyLyalyuev/awscreds.git
$ cd awscreds
$ python3 setup.py install## Get help
`awscreds -h`
## Store credentials into Keychain
`awscreds add`
`awscreds add -e prj_name`
## Delete credentials from Keychain
`awscreds delete`
`awscreds delete -e prj_name`
## Get credentials from Keychain in ready to use format
`awscreds get -e prj_name`
## Export credentials into your shell session
```
eval `awscreds export -e prj_name`
```