infobloxopen / terraform-provider-infoblox

Infoblox NIOS Terraform Provider
https://github.com/infobloxopen/terraform-provider-infoblox
Mozilla Public License 2.0
67 stars 73 forks source link

Reserve_IP enhancement #315

Open sufiyan04 opened 10 months ago

sufiyan04 commented 10 months 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.

  1. Not able to add name to these reseve IPs while reserving them.
  2. Not able to choose a IP or range or IP to reserve.

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.