From 8e318586c3f7fde5e9c93935b7ccf4669118ad0d Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Tue, 11 Mar 2025 14:12:09 -0400 Subject: [PATCH] Make `cert` and `key` `required` for `TLS` --- tljh/config_schema.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tljh/config_schema.py b/tljh/config_schema.py index 4a17f13..3e6d8f6 100644 --- a/tljh/config_schema.py +++ b/tljh/config_schema.py @@ -74,6 +74,7 @@ config_schema = { "type": "object", "additionalProperties": False, "properties": {"key": {"type": "string"}, "cert": {"type": "string"}}, + "required": ["key", "cert"], }, "Limits": { "description": "User CPU and memory limits.",