You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add support for block definition of ranges in vlan pool and remove requirement for "vlan-" prefix before vlan number:
resource "aci_vlan_pool" "my_pool" {
name = "my_vlan_pool"
alloc_mode = "dynamic"
range {
from = "100"
to = "200"
}
range {
from = "1500"
to = "2000"
}
The text was updated successfully, but these errors were encountered:
I don't think it achieves the same thing. A block allows you multiple ranges. For aci_ranges, you'd have to create multiple resources, which is what the block usage is trying to avoid.
Add support for block definition of ranges in vlan pool and remove requirement for "vlan-" prefix before vlan number:
The text was updated successfully, but these errors were encountered: