Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.31 KB

File metadata and controls

41 lines (32 loc) · 1.31 KB
page_title subcategory description
solidserver_ip_pool Data Source - SOLIDserver
IP pool data-source allows to retrieve information about reserved IPv4 pools including meta-data.

solidserver_ip_pool (Data Source)

IP pool data-source allows to retrieve information about reserved IPv4 pools including meta-data.

Example Usage

data "solidserver_ip_pool" "myFirstIPPoolData" {
  depends_on = [solidserver_ip_subnet.myFirstIPPool]
  name   = solidserver_ip_subnet.myFirstIPPool.name
  subnet = solidserver_ip_subnet.myFirstIPPool.subnet
  space  = solidserver_ip_subnet.myFirstIPPool.space
}

Schema

Required

  • name (String) The name of the IP pool.
  • space (String) The space associated to the IP pool.
  • subnet (String) The parent subnet of the IP pool.

Read-Only

  • class (String) The class associated to the IP pool.
  • class_parameters (Map of String) The class parameters associated to the IP pool.
  • end (String) The last address of the IP pool.
  • id (String) The ID of this resource.
  • prefix (String) The prefix of the parent subnet of the IP pool.
  • prefix_size (Number) The size prefix of the parent subnet of the IP pool.
  • size (String) The size of the IP pool.
  • start (String) The fisrt address of the IP pool.