home.social

#unixmagic — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #unixmagic, aggregated by home.social.

  1. 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