Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Created October 30, 2019 20:16
Show Gist options
  • Save dasgoll/b88d5be05dcc0deb052ad40446c2fb40 to your computer and use it in GitHub Desktop.
Save dasgoll/b88d5be05dcc0deb052ad40446c2fb40 to your computer and use it in GitHub Desktop.
KMS Pricing example
What does AWS KMS Cost?
KMS costs $1 per key per month. The first 20,000 requests per month are free. Thereafter, you pay $0.03 per 10,000 requests.
So if you have one key and make 15,000 decrypt requests a month, your monthly cost would be $1.00.
On the other hand, if you have 1 key and make 99,000 decrypt requests and 1,000 encrypt requests a month, your monthly cost would be $1.24 ( (100,000 total requests - 20,000 free tier requests) x $0.03 / 10,000 requests ).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment