ssm-cache-python
ssm-cache-python copied to clipboard
AWS System Manager Parameter Store caching client for Python
This requires the coveralls repo token to be available as a secret. You can find the token at https://coveralls.io/github/alexcasalboni/ssm-cache-python. It must be added at https://github.com/alexcasalboni/ssm-cache-python/settings/secrets/actions 
SSM returns this data: ```json { "Name": "...", "LastModifiedDate": "...", "Value": "...", "Version": 3, "Type": "String", "ARN": "..." } ``` We could integrate fields such as `Version` and `LastModifiedData` in...
`_max_age` and `_last_refresh_time` are not currently "shared" between a `SSMParameterGroup` and its `SSMParameter` objects. While #14 has fixed the refreshing bug due to this inconsistency, we could somehow keep the...
The module could provide a way to avoid API calls to AWS/SSM when working locally. For example, we could use `os.environ` to look for values instead of querying the Parameter...
Hi - impressed with this library thus far - it just works :) Wondering if you've considered allowing the client to set the batch size rather than the hard-coded 10...