0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-24 20:38:34 +00:00

fix(lxc): Adjust max number of container's IP configs

The limit now matches the number of network interfaces allowed by Proxmox

Fix #2080

Signed-off-by: Kamil Mańkowski <gh.welcome@tools.kam193.eu>
This commit is contained in:
Kamil Mańkowski 2025-08-08 14:33:29 +02:00 committed by Kamil Mankowski (kam193)
parent 5151dcc7b7
commit 7cad2ddde8
No known key found for this signature in database
GPG Key ID: B8F7F73056C78DF9

View File

@ -523,7 +523,7 @@ func Container() *schema.Resource {
},
},
},
MaxItems: 8,
MaxItems: maxNetworkInterfaces,
MinItems: 0,
},
mkInitializationUserAccount: {