mgoodnow
9/24/2019 - 10:07 PM

AWS KMS Decrypt

aws kms decrypt \
  --ciphertext-blob fileb://<(echo "<ENCRYPTED_STRING_HERE>" | base64 -D) \
  --output text \
  --query Plaintext \
  --region us-east-1 \
  --profile <AWS_PROFILE_HERE> | base64 --decode