-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support fetching configuration from AWS parameter store #6
Comments
Code for downloading parameters from SSM:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
DownloadUtil.java currently supports fetching files from http and s3.
Adding support for AWS parameter store looks interesting.
Suggest using NamedPropertiesStore.java over DownLoadItem, but it might be a good idea to create an interface or extend NamedPropertiesStore to support
Impl notes:
use describeParameters to fetch list of all keys and use this list of keys as input to getParameters. It is necessay to fetch all keys and filter client side due to some bugs.
https://aws.amazon.com/ec2/systems-manager/parameter-store/
https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-ssm
The text was updated successfully, but these errors were encountered: