-
Is it possible to load properties from environment variables? For example Trino supports this. It would be useful to pass in secrets (like S3 keys) this way - or is there a different mechanism that should be used in this case? |
Beta Was this translation helpful? Give feedback.
Answered by
ndr-brt
May 23, 2023
Replies: 1 comment 1 reply
-
The environment variables are in fact read as configuration settings our of the box, converting the format Any other need as environment variable replacement could be implemented in a custom extension. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
fhennig
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The environment variables are in fact read as configuration settings our of the box, converting the format
So if you pass to the environment variable
WEB_HTTP_PORT
it gets read as the settingweb.http.port
.Any other need as environment variable replacement could be implemented in a custom extension.