We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently opentelemetry has configuration that allows injection of secrets from the file system or environment. This is problematic because:
Proposal is that:
file.
The text was updated successfully, but these errors were encountered:
Otel configuration updated to use expansion (#1774)
d13a9de
Fixes #1772 File and env access in configuration now use the generic expansion mechanism introduced in [#1759](#1759). ```yaml grpc: key: file: "foo.txt" ca: file: "bar.txt" cert: file: "baz.txt" ``` Becomes: ```yaml grpc: key: "${file.foo.txt}" ca: "${file.bar.txt}" cert: "${file.baz.txt}" ``` or ```yaml grpc: key: "${env.FOO}" ca: "${env.BAR}" cert: "${env.BAZ}" ``` Co-authored-by: bryn <bryn@apollographql.com> Co-authored-by: Jeremy Lempereur <jeremy.lempereur@gmail.com>
BrynCooke
Successfully merging a pull request may close this issue.
Currently opentelemetry has configuration that allows injection of secrets from the file system or environment. This is problematic because:
Proposal is that:
file.
. This can be configured via unsupported environment variable:The text was updated successfully, but these errors were encountered: