Skip to content

Instantly share code, notes, and snippets.

@antigenius0910
Forked from mafonso/list-all-access-keys.sh
Created January 6, 2023 08:44
Show Gist options
  • Save antigenius0910/7241d46337139640957507e59b6987d4 to your computer and use it in GitHub Desktop.
Save antigenius0910/7241d46337139640957507e59b6987d4 to your computer and use it in GitHub Desktop.
List Access Keys for all IAM users
#!/usr/bin/env bash
for user in $(aws iam list-users --output text | awk '{print $NF}'); do
aws iam list-access-keys --user $user --output text
test $? -gt 128 && exit
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment