https://github.com/loopingz/yaws
Yet Another AWS Tools
https://github.com/loopingz/yaws
aws bash utils
Last synced: 4 months ago
JSON representation
Yet Another AWS Tools
- Host: GitHub
- URL: https://github.com/loopingz/yaws
- Owner: loopingz
- License: lgpl-3.0
- Created: 2017-08-03T15:36:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-25T11:23:24.000Z (almost 7 years ago)
- Last Synced: 2025-09-20T02:27:01.650Z (9 months ago)
- Topics: aws, bash, utils
- Language: Python
- Size: 10.7 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# yaws
Yet Another AWS Tools
This tool is to add functionalities that are blocked in PullRequest on official client
```
usage: yaws [-h] [--profile PROFILE] {export,rotate-keys,test}
```
## export
Generate variable for bash so you can export them to environment variable easily
On Linux/MacOS systems:
```
eval `yaws --profile MyProfile export`
```
On MS Windows systems (PowerShell):
```
Invoke-Expression -Command (yaws --profile MyProfile export)
```
## rotate-keys
It will take your current AWS credentials, create a new credential then remove the old one
```
yaws --profile test rotate-keys
```