ssm-cache-python icon indicating copy to clipboard operation
ssm-cache-python copied to clipboard

AWS System Manager Parameter Store caching client for Python

Results 5 ssm-cache-python issues
Sort by recently updated
recently updated
newest added

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 ![image](https://user-images.githubusercontent.com/152008/125814196-c7111dd0-e043-4e1a-a485-8bc15fe13667.png)

SSM returns this data: ```json { "Name": "...", "LastModifiedDate": "...", "Value": "...", "Version": 3, "Type": "String", "ARN": "..." } ``` We could integrate fields such as `Version` and `LastModifiedData` in...

enhancement

`_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...

enhancement
help wanted
question

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...

enhancement
help wanted

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...