Created
September 14, 2017 00:24
-
-
Save tom-butler/b3bee7a2929f74ed4f19094e5ee84a16 to your computer and use it in GitHub Desktop.
list aws access keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for user in $(aws iam list-users --output text | awk '{print $NF}'); do | |
aws iam list-access-keys --user $user --output text | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment