From ccd882bcfd5604fc919a3263787af1e31022b7c2 Mon Sep 17 00:00:00 2001 From: Damien Date: Sun, 15 Feb 2026 20:23:07 +0100 Subject: [PATCH] =?UTF-8?q?fix(schema):=20change=20InfraIPAddress.address?= =?UTF-8?q?=20from=20IPNetwork=20to=20IPHost=20=E2=80=94=20refs=20#52?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit IPNetwork with strict=True rejects host addresses like 10.0.1.1/31 (host bits set). Interface IP assignments are host addresses with a prefix length, which is exactly what IPHost accepts. --- schemas/base.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schemas/base.yml b/schemas/base.yml index 7e33dc4..e08bb57 100644 --- a/schemas/base.yml +++ b/schemas/base.yml @@ -320,7 +320,7 @@ nodes: display_label: "{{ address__value }}" attributes: - name: address - kind: IPNetwork + kind: IPHost description: IP address with prefix (e.g., 10.0.1.1/31) - name: description kind: Text