You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use-case: Many programs require config files containing secrets, but do not allow to load a file or environment variables for these variables easily. So the complete file needs to be age-encrypted, not only the actual secrets. This makes it more complicate to track the changes done on the config files.
Solution: Allow merging config files containing environment variables together with a file containing these environment variables which is coming from the age store and provide these files to the user.
Use-case: Many programs require config files containing secrets, but do not allow to load a file or environment variables for these variables easily. So the complete file needs to be age-encrypted, not only the actual secrets. This makes it more complicate to track the changes done on the config files.
Solution: Allow merging config files containing environment variables together with a file containing these environment variables which is coming from the age store and provide these files to the user.
Example:
config_raw.json
.env
config.json
Currently I am doing this with a separate service using
envsubst
to decrypt on startup, but this does not seem like the optimal solution:I am not sure if it fits to the scope of this project, but if it does, it would be great to have it.
The text was updated successfully, but these errors were encountered: