From 763c9dfa6b79559cc78f44a9967f5a3b53a6bae9 Mon Sep 17 00:00:00 2001 From: Christoph Kluge Date: Tue, 3 Dec 2024 15:22:34 +0100 Subject: [PATCH] fix schema definition of apiAllowedIPs --- pkg/schema/schemas/config.schema.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/schema/schemas/config.schema.json b/pkg/schema/schemas/config.schema.json index e1b7dc88..c04dd740 100644 --- a/pkg/schema/schemas/config.schema.json +++ b/pkg/schema/schemas/config.schema.json @@ -10,7 +10,10 @@ }, "apiAllowedIPs": { "description": "Addresses from which secured API endpoints can be reached", - "type": "string" + "type": "array", + "items": { + "type": "string" + } }, "user": { "description": "Drop root permissions once .env was read and the port was taken. Only applicable if using privileged port.",