Reputation: 5142
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
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
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