Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

// full set of parameters for dynamic allocation of network containers
resource "infoblox_ipv6_network_container" "v6net_c3" {
    parent_cidr = infoblox_ipv6_network_container.v6net_c2.cidr
    allocate_prefix_len = 97
    network_view = "infoblox_ipv6_network_container.v6net_c2.network_view"
    comment = "dynamic allocation of network container"
    ext_attrs = jsonencode({
      "Tenant ID" = "terraform_test_tenant"
      "Site" = "Test site"
    })
}

//network container resource using next-available-network
resource "infoblox_ipv6_network_container" "nc7" {
allocate_prefix_len = 68
# network_view = "nondefault_netview"
comment = "one of our clients"
filter_params = jsonencode({
"*Site": "Blr"
})
}

//network container resource using next-available-network based on extensible attributes tag
resource "infoblox_ipv6_network_container" "nc7" {
allocate_prefix_len = 68
# network_view = "nondefault_netview"
comment = "network container created with the next available network"
filter_params = jsonencode({
"*Site": "Blr"
})
}