Per title, devicess with many templates are timing out on apply and never enter state after creation.
resource "netbox_interface_template" "arista_v1_tor_qsfp28_ports" {
for_each = toset([for i in range(1, 33) : tostring(i)])
device_type_id = netbox_device_type.arista_tor_v1.id
name = "Ethernet${each.value}"
label = "Eth${each.value}"
type = "100gbase-x-qsfp28"
mgmt_only = false
}
Per title, devicess with many templates are timing out on apply and never enter state after creation.