Skip to content

Instantly share code, notes, and snippets.

View Boris-Jancic's full-sized avatar
🏠
Working from home

Boris Jancic Boris-Jancic

🏠
Working from home
View GitHub Profile
@mafonso
mafonso / list-all-access-keys.sh
Last active April 23, 2025 08:33
List Access Keys for all IAM users
for user in $(aws iam list-users --output text --no-cli-pager | awk '{print $NF}'); do
aws iam list-access-keys --user $user --output text --no-cli-pager
test $? -gt 128 && exit
done