hatellla
hatellla

Reputation: 5142

Any AWS service to store the configs used by lambda or ec2 hosts?

Does AWS provides any service for storing all the configs and we can get this config by just making a call to it? Here the config can be version controlled or available with less latency and so on?

Eg. I want to use some configs from the lambda function which I can easily change without changing the lambda function.

Upvotes: 0

Views: 67

Answers (2)

Rakib
Rakib

Reputation: 327

You can use AWS Systems Manager Parameter Store. It provides a centralized store to manage configuration data such as database strings, secrets or credentials. https://aws.amazon.com/systems-manager/features/#Parameter_Store

Upvotes: 4

Daniel Vassallo
Daniel Vassallo

Reputation: 344511

DynamoDB is typically used for that purpose. The latency for a single GetItem request is typically around 5ms, and you can cache the results client-side to reduce the latency even further and to avoid a read io ever time.

Upvotes: 2

Related Questions