-
-
Save MrPink/61d81c7bdbb274d9615cf77e639c1371 to your computer and use it in GitHub Desktop.
Shell tidbits
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
get a list of KMS keys and describe them | |
for key in `aws kms list-keys | jq '.Keys[].KeyId' | tr -d '"'`; do aws kms describe-key --key-id $key; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment