#1liner — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #1liner, aggregated by home.social.
-
pretty happy w/this shell oneliner to get the deets on the unique kms keys used in the last 100k decryptions
aws cloudtrail lookup-events --lookup-attributes "AttributeKey=EventName,AttributeValue=Decrypt" --region us-east-1 --max-results 100000 | jq -r '.Events[].CloudTrailEvent' | jq -r | grep '"ARN"' | sed 's!.*key/!!;s!"!!' | sort -u | xargs -n1 aws kms describe-key --key-id | grep -i 'keyid\|creation\|manager\|descr' | sed 's!.*"\(.*\)":!\1!;s!",!"!;s!KeyId!\n\nKeyId!'
#unix #shell #aws #awscli #bash #commandline #unixmagic #commandlineexcellence #oneliner #1liner