-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Otel configuration updated to use expansion
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}" ```
- Loading branch information
bryn
committed
Sep 14, 2022
1 parent
8e68aca
commit 279bbd6
Showing
10 changed files
with
156 additions
and
245 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.