Skip to content

Commit faa20ad

Browse files
committed
gen
1 parent deb577b commit faa20ad

File tree

5 files changed

+19
-0
lines changed

5 files changed

+19
-0
lines changed

coderd/apidoc/docs.go

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/api/general.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ curl -X GET http://coder-server:8080/api/v2/deployment/config \
196196
"disable_path_apps": true,
197197
"disable_session_expiry_refresh": true,
198198
"experiments": ["string"],
199+
"external_token_encryption_key": "string",
199200
"git_auth": {
200201
"value": [
201202
{

docs/api/schemas.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,6 +1894,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
18941894
"disable_path_apps": true,
18951895
"disable_session_expiry_refresh": true,
18961896
"experiments": ["string"],
1897+
"external_token_encryption_key": "string",
18971898
"git_auth": {
18981899
"value": [
18991900
{
@@ -2239,6 +2240,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
22392240
"disable_path_apps": true,
22402241
"disable_session_expiry_refresh": true,
22412242
"experiments": ["string"],
2243+
"external_token_encryption_key": "string",
22422244
"git_auth": {
22432245
"value": [
22442246
{
@@ -2429,6 +2431,7 @@ CreateParameterRequest is a structure used to create a new parameter value for a
24292431
| `disable_path_apps` | boolean | false | | |
24302432
| `disable_session_expiry_refresh` | boolean | false | | |
24312433
| `experiments` | array of string | false | | |
2434+
| `external_token_encryption_key` | string | false | | |
24322435
| `git_auth` | [clibase.Struct-array_codersdk_GitAuthConfig](#clibasestruct-array_codersdk_gitauthconfig) | false | | |
24332436
| `http_address` | string | false | | Http address is a string because it may be set to zero to disable. |
24342437
| `in_memory_database` | boolean | false | | |

docs/cli/server.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,15 @@ Expose the swagger endpoint via /swagger.
233233

234234
Enable one or more experiments. These are not ready for production. Separate multiple experiments with commas, or enter '\*' to opt-in to all available experiments.
235235

236+
### --external-token-encryption-key
237+
238+
| | |
239+
| ----------- | ------------------------------------------------- |
240+
| Type | <code>string</code> |
241+
| Environment | <code>$CODER_EXTERNAL_TOKEN_ENCRYPTION_KEY</code> |
242+
243+
Encrypt OIDC and Git authentication tokens with AES-256-GCM in the database. The value must be a base64-encoded key.
244+
236245
### --provisioner-force-cancel-interval
237246

238247
| | |

0 commit comments

Comments
 (0)