File tree Expand file tree Collapse file tree 2 files changed +42
-1
lines changed
src/content/chainlink-nodes/v1 Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { Aside } from "@components"
1010
1111This document describes the TOML format for configuration.
1212
13- See also [ SECRETS.md ] ( SECRETS.md )
13+ See also: [ Secrets Config ] ( /chainlink-nodes/v1/secrets-config )
1414
1515## Example
1616
Original file line number Diff line number Diff line change @@ -63,6 +63,23 @@ AllowSimplePasswords skips the password complexity check normally enforced on UR
6363
6464Environment variable: ` CL_DATABASE_ALLOW_SIMPLE_PASSWORDS `
6565
66+ ## WebServer.OIDC
67+
68+ ``` toml
69+ [WebServer .OIDC ]
70+ clientSecret = " secret" # Example
71+ ```
72+
73+ Optional OIDC config
74+
75+ ### clientSecret
76+
77+ ``` toml
78+ clientSecret = " secret" # Example
79+ ```
80+
81+ clientSecret is the secret value sent to the OIDC provider to exchange authorization code for ID token
82+
6683## WebServer.LDAP
6784
6885``` toml
@@ -216,3 +233,27 @@ ThresholdKeyShare = "A-Threshold-Decryption-Key-Share" # Example
216233```
217234
218235ThresholdKeyShare used by the threshold decryption OCR plugin
236+
237+ ## CRE.Streams
238+
239+ ``` toml
240+ [CRE .Streams ]
241+ ApiKey = " streams-api-key" # Example
242+ ApiSecret = " streams-api-secret" # Example
243+ ```
244+
245+ ### ApiKey
246+
247+ ``` toml
248+ ApiKey = " streams-api-key" # Example
249+ ```
250+
251+ ApiKey is the API key used for authenticating with the CLL Data Streams SDK.
252+
253+ ### ApiSecret
254+
255+ ``` toml
256+ ApiSecret = " streams-api-secret" # Example
257+ ```
258+
259+ ApiSecret is the API secret used for authenticating with the CLL Data Streams SDK.
You can’t perform that action at this time.
0 commit comments