From ceb59aa74c4b0621cdb34249a2bf8233eadc0720 Mon Sep 17 00:00:00 2001 From: PieterL75 <74899468+PieterL75@users.noreply.github.com> Date: Tue, 8 Apr 2025 13:14:21 +0200 Subject: [PATCH] Added ROLE_VARP to IPAddressRoleChoices --- netbox/ipam/constants.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/ipam/constants.py b/netbox/ipam/constants.py index 6dffd3287..13a655150 100644 --- a/netbox/ipam/constants.py +++ b/netbox/ipam/constants.py @@ -40,6 +40,7 @@ IPADDRESS_MASK_LENGTH_MAX = 128 # IPv6 IPADDRESS_ROLES_NONUNIQUE = ( # IPAddress roles which are exempt from unique address enforcement IPAddressRoleChoices.ROLE_ANYCAST, + IPAddressRoleChoices.ROLE_VARP, IPAddressRoleChoices.ROLE_VIP, IPAddressRoleChoices.ROLE_VRRP, IPAddressRoleChoices.ROLE_HSRP,