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: docs/data-sources/infoblox_ipv4_network.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,17 @@ The data source for the network object allows you to get the following parameter
6
6
*`cidr`: the network block which corresponds to the network, in CIDR notation. Example: `192.0.17.0/24`
7
7
*`comment`: a description of the network. This is a regular comment. Example: `Untrusted network`.
8
8
*`ext_attrs`: The set of extensible attributes, if any. The content is formatted as string of JSON map. Example: `"{\"Owner\":\"State Library\",\"Administrator\":\"unknown\"}"`.
9
-
9
+
*`options`: An array of DHCP option structs that lists the DHCP options associated with the object.
10
+
```terraform
11
+
options {
12
+
name = "dhcp-lease-time"
13
+
value = "43200"
14
+
vendor_class = "DHCP"
15
+
num = 51
16
+
use_option = true
17
+
}
18
+
```
19
+
*`utilization`: The network utilization in percentage. Example: `0`
10
20
11
21
For usage of filters, add the fields as keys and appropriate values to be passed to the keys like `name`, `view` corresponding to object.
12
22
From the below list of supported arguments for filters, use only the searchable fields for retriving the matching records.
0 commit comments