Skip to content

Commit f563543

Browse files
github-actions[bot]ory-bot
authored andcommitted
autogen: prepare for OSS release - v25.4.0
GitOrigin-RevId: 8a80ff652290d5faf26d05286b077325672b6fc5
1 parent ff61c2c commit f563543

File tree

5 files changed

+366
-54
lines changed

5 files changed

+366
-54
lines changed

.schema/config.schema.json

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -340,10 +340,10 @@
340340
"enum": ["cpu", "mem", ""]
341341
},
342342
"log": {
343-
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.677/logrusx/config.schema.json"
343+
"$ref": "https://raw.githubusercontent.com/ory/keto/ff61c2c0/oryx/logrusx/config.schema.json"
344344
},
345345
"tracing": {
346-
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.677/otelx/config.schema.json"
346+
"$ref": "https://raw.githubusercontent.com/ory/keto/ff61c2c0/oryx/otelx/config.schema.json"
347347
},
348348
"namespaces": {
349349
"description": "Namespace configuration or it's location.",
@@ -448,6 +448,29 @@
448448
}
449449
}
450450
},
451+
"secrets": {
452+
"title": "Secrets for signing and encryption",
453+
"description": "Make sure to use unique and random secrets for production deployments. Horizontally scaled deployments have to use the same secrets across all instances.",
454+
"type": "object",
455+
"properties": {
456+
"pagination": {
457+
"description": "Pagination secrets are used to encrypt pagination tokens. The first secret is used for encryption, while all others are used for decryption. This allows you to rotate the encryption key without invalidating all existing pagination tokens.",
458+
"type": "array",
459+
"minLength": 1,
460+
"items": {
461+
"type": "string",
462+
"minLength": 16
463+
},
464+
"examples": [
465+
[
466+
"secret used for encryption",
467+
"old secret kept for decryption",
468+
"another old secret kept for decryption"
469+
]
470+
]
471+
}
472+
}
473+
},
451474
"version": {
452475
"type": "string",
453476
"title": "The Keto version this config is written for.",

0 commit comments

Comments
 (0)