Support for AWS Systems Manager Parameter Store #48
theowenyoung
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
|
This has been implemented and is available in PR #126: #126 🎉 Configuration[providers.aws-ps]
type = "aws-ps"
region = "us-east-1"
prefix = "/myapp/prod/" # optional
[secrets]
DATABASE_URL = { provider = "aws-ps", value = "database/url" } # Resolves to /myapp/prod/database/urlFeatures
Requirements
Usage# Add the provider
fnox provider add ps aws-ps
# Store a secret
fnox set MY_SECRET "my-value" --provider ps
# Retrieve a secret
fnox get MY_SECRET
# Use in shell commands
fnox exec -- ./my-appThis matches the proposed configuration in the issue. Thanks for the feature request! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Add support for AWS Parameter Store as a cloud secret storage provider alongside the existing
aws-sm(Secrets Manager).Motivation
AWS Parameter Store is widely used and offers:
/myapp/prod/database/url)Proposed Configuration
Beta Was this translation helpful? Give feedback.
All reactions