0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-08-22 11:28:33 +00:00

fix(lxc): adjust max number of container's IP configs (#2088)

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-10 20:38:13 +02:00 committed by GitHub
parent 91e0fbf676
commit 602568e6a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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