Replies: 1 comment 6 replies
-
Hi @hakanutku ,
No, there is no way to make it right now. I think this is a reasonable problem. Thanks for bringing this up. I'll think how I can address this. |
Beta Was this translation helpful? Give feedback.
6 replies
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.
-
Hi,
First of all, thanks for creating this great project. I'm using environment variable interpolation with a yaml config file. But when a environment variable is not defined and I try to access it, configuration variable is the literal value in yaml config file.
For example:
When
DATABASE_URL
environment variable is defined, my provided config ispostgresql://postgres:password@localhost:5432/postgres
But when this variable is not defined, provided config is
${DATABASE_URL}
So is there a way to make these interpolations required? I want to throw some kind of an error if environment variable is not set.
Beta Was this translation helpful? Give feedback.
All reactions