-
Notifications
You must be signed in to change notification settings - Fork 170
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
feature request: Having a namespace in front of the ssm /service/ path. #128
Comments
Just trying out Chamber for the first time after reading the post on the AWS blog. Thanks for the tool (and the article), you helped me quickly get up to speed with effective patterns for using Parameter Store. However, I support the request in this issue. Namely: Chamber doesn't support using path-based organization of my parameters, which I take to be recommended practice (based on the Parameter Store docs and examples I've seen on AWS). In the meantime, I've got a systemd unit that does the basic version. In other words, the below fetches all parameters within a path and upcases the final segment of the path key then outputs an environment file (in the format "PATH_SEGMENT_ENV_VAR=decrypted_value"):
|
+1 to prefix (namespace) or at least allow '/' in service name. Currently using '/' gives an error:
|
This might be resolved by #118 |
@AndreyMarchuk Ah thanks for pointing me out! |
@maartenvanderhoef I submitted #140 as a way to add support |
I think this would be a useful feature, but probably requires a change to the model, so targeting for v3.x |
This issue has been automatically marked |
Closing due to staleness. Closed does not mean "never", just that it has no momentum to get accomplished any time soon. |
I too would like this very much to have this. Ideally I would just like to set my own prefix in front of /service, and then I can set it via an environment variable and done. For example, it would be nice to have CHAMBER_PREFIX="/mycompany/dev" and it will do "/mycompany/dev/service". That being said, I just wanted to add that this can kind of be done already in an awkward way by using slashes in a service name. e.g. |
Hi there!
What are the thoughts of having an ENV VAR
SSM_PATH_NAMESPACE
orSSM_PATH_PREPEND
which prepends a string in front of the/service/lookupvar
. This to make it easier to organize SSM a bit when it's not only docker applications looking up SSM. For example I'm currently using/applications/service/lookupvar
.The text was updated successfully, but these errors were encountered: