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
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
This is a provider plugin for Terraform to manage Infoblox NIOS (Network Identity Operating System) resources using Terraform infrastructure as code solutions.
8
8
The plugin enables lifecycle management of Infoblox NIOS DDI resources.
9
9
10
-
The latest version of Infoblox provider is [v2.3.0](https://github.com/infobloxopen/terraform-provider-infoblox/releases/tag/v2.3.0)
10
+
The latest version of Infoblox provider is [v2.4.0](https://github.com/infobloxopen/terraform-provider-infoblox/releases/tag/v2.4.0)
Copy file name to clipboardExpand all lines: docs/resources/infoblox_ipv4_network_container.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,16 @@ The following list describes the parameters you can define in the network contai
7
7
resource block:
8
8
9
9
*`network_view`: optional, specifies the network view in which to create the network container; if a value is not specified, the name `default` is used as the network view.
10
-
*`cidr`: required, specifies the network block to use for the network container; do not use an IPv6 CIDR for an IPv4 network container.
10
+
*`cidr`: required only if `parent_cidr` is not set, specifies the network block to use for the network container; do not use an IPv6 CIDR for an IPv4 network container.
11
+
*`parent_cidr`: required only if `cidr` is not set, specifies the network container from which next available network container must be allocated.
12
+
*`allocate_prefix_len`: required only if `parent_cidr` is set, defines length of netmask for a network container that should be allocated from network container, determined by `parent_cidr`.
11
13
*`comment`: optional, describes the network container.
12
14
*`ext_attrs`: optional, specifies the set of NIOS extensible attributes that will be attached to the network container.
13
15
14
16
!> Once the network container is created, the `network_view` and `cidr` parameter values cannot be changed by performing an `update` operation.
15
17
18
+
!> Once the network container is created dynamically, the `parent_cidr` and `allocate_prefix_len` parameter values cannot be changed.
Copy file name to clipboardExpand all lines: docs/resources/infoblox_ipv6_network_container.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,16 @@ The following list describes the parameters you can define in the network contai
7
7
resource block:
8
8
9
9
*`network_view`: optional, specifies the network view in which to create the network container; if a value is not specified, the name `default` is used as the network view.
10
-
*`cidr`: required, specifies the network block to use for the network container; do not use an IPv4 CIDR for an IPv6 network container.
10
+
*`cidr`: required only if `parent_cidr` is not set, specifies the network block to use for the network container; do not use an IPv4 CIDR for an IPv6 network container.
11
+
*`parent_cidr`: required only if `cidr` is not set, specifies the network container from which next available network container must be allocated.
12
+
*`allocate_prefix_len`: required only if `parent_cidr` is set, defines length of netmask for a network container that should be allocated from network container, determined by `parent_cidr`.
11
13
*`comment`: optional, describes the network container.
12
14
*`ext_attrs`: optional, specifies the set of NIOS extensible attributes that will be attached to the network container.
13
15
14
16
!> Once the network container is created, the `network_view` and `cidr` parameter values cannot be changed by performing an `update` operation.
15
17
18
+
!> Once the network container is created dynamically, the `parent_cidr` and `allocate_prefix_len` parameter values cannot be changed.
0 commit comments