An open API service indexing awesome lists of open source software.

https://github.com/arddluma/aws-iam-key-rotation

Rotate your IAM keys automatically
https://github.com/arddluma/aws-iam-key-rotation

aws aws-cli aws-iam iam iam-key-manager key-rotation

Last synced: 3 months ago
JSON representation

Rotate your IAM keys automatically

Awesome Lists containing this project

README

          

# aws-iam-key-rotation
Rotate your IAM keys automatically

***Prerequisites***

- awscli (https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html)
- jq (Ubuntu: sudo apt-get install -y jq / MacOS: brew install jq)

Usage: `./aws-iam-key-rotation.sh `

Run as a cronjob:
`crontab -e`

**Important:**

Set the SHELL to be `/bin/bash`
`SHELL=/bin/bash`

E.g run every day at 00:00

`0 0 * * * /path/to/script/aws-iam-key-rotation.sh `

if you want to see the logs of scheduled jobs you can add `>> /path/to/log/file` at the end.

`0 0 * * * /path/to/script/aws-iam-key-rotation.sh >> /path/to/log/file`