From 343c1097c75a9eaddf29c3ec84424c149da3b147 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Thu, 17 Mar 2022 00:20:22 +0000 Subject: [PATCH] Stop trying to police interface names -- they will be validated by get_by_name() --- schema.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema.yaml b/schema.yaml index debd364..93ede25 100644 --- a/schema.yaml +++ b/schema.yaml @@ -1,4 +1,4 @@ -interfaces: map(include('interface'),key=str(matches='.*GigabitEthernet[0-9]+/[0-9]+/[0-9]+|BondEthernet[0-9]+|vxlan_tunnel[0-9]+'),required=False) +interfaces: map(include('interface'),key=str(),required=False) bondethernets: map(include('bondethernet'),key=str(matches='BondEthernet[0-9]+'),required=False) loopbacks: map(include('loopback'),key=str(matches='loop[0-9]+'),required=False) bridgedomains: map(include('bridgedomain'),key=str(matches='bd[0-9]+'),required=False)