-3

I want to store API keys on AWS without having to pay $0.4 a month, also it has to be secure and accessible from Lambda and other functions

I tried secret manager and I want a different solution like s3 maybe?

vcm
  • 1
  • 2
  • 1
    You can store it where ever you want. S3 is fine. Is it the best practice? No. But its possible and you can do it if you want. – Marcin Apr 01 '22 at 04:34

1 Answers1

3

You can evaluate AWS Parameter Store, this is free charge for Standard parameter and you can encrypt data with a KMS Key specified by yourself for free.

You should pay just 0,05$ each month if there are more than 10.000 API calls (the first 10k are free)

Pricing

Difference between Standard and Advanced

Encrypt Parameter

Danilo Cacace
  • 482
  • 2
  • 8