Skip to content

Commit e0ad8b4

Browse files
committed
secrets config and link fix
1 parent 879f113 commit e0ad8b4

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

src/content/chainlink-nodes/v1/node-config.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { Aside } from "@components"
1010

1111
This 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

src/content/chainlink-nodes/v1/secrets-config.mdx

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,23 @@ AllowSimplePasswords skips the password complexity check normally enforced on UR
6363

6464
Environment 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

218235
ThresholdKeyShare 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.

0 commit comments

Comments
 (0)