From 7cad2ddde80c2058458a9fc5876ecad4f4338254 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Ma=C5=84kowski?= Date: Fri, 8 Aug 2025 14:33:29 +0200 Subject: [PATCH] fix(lxc): Adjust max number of container's IP configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The limit now matches the number of network interfaces allowed by Proxmox Fix #2080 Signed-off-by: Kamil MaƄkowski --- proxmoxtf/resource/container/container.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmoxtf/resource/container/container.go b/proxmoxtf/resource/container/container.go index d54fe07a..3b675d21 100644 --- a/proxmoxtf/resource/container/container.go +++ b/proxmoxtf/resource/container/container.go @@ -523,7 +523,7 @@ func Container() *schema.Resource { }, }, }, - MaxItems: 8, + MaxItems: maxNetworkInterfaces, MinItems: 0, }, mkInitializationUserAccount: {