Open sufiyan04 opened 1 year ago
While reserving IPs from a network block, it reserve the next available IPs. I.e we i say reserve_ip=4 , it would reserve next 4 available IPs.
resource "infoblox_ipv4_network" "Network2" { parent_cidr = infoblox_ipv4_network_container.Container1.cidr allocate_prefix_len = 24 reserve_ip = 2 depends_on = [ infoblox_ipv4_network.Network1 ] }
above code will create a /24 network and would reserve the first 2 IPs. But i cannot add names to those reserved IPs. Also what if i need to reserve first 2 IPs and 5 IPs somewhere in this /24, thats currently not possible i believe.
While reserving IPs from a network block, it reserve the next available IPs. I.e we i say reserve_ip=4 , it would reserve next 4 available IPs.
resource "infoblox_ipv4_network" "Network2" { parent_cidr = infoblox_ipv4_network_container.Container1.cidr allocate_prefix_len = 24 reserve_ip = 2 depends_on = [ infoblox_ipv4_network.Network1 ] }
above code will create a /24 network and would reserve the first 2 IPs. But i cannot add names to those reserved IPs. Also what if i need to reserve first 2 IPs and 5 IPs somewhere in this /24, thats currently not possible i believe.