-
Notifications
You must be signed in to change notification settings - Fork 10
Name Server Group for forward stub zones
ppwarwick edited this page Aug 31, 2017
·
1 revision
The infoblox_ns_group_forward_stub
resource may be used to manage Name Server Groups for forward/stub zones.
resource "infoblox_ns_group_forward_stub" "example" {
name = "example-name-server-group"
comment = "An example of a Name Server Group for forward/stub"
external_dns_servers = [
{
name = "ns1.example.com"
address = "192.168.0.3"
},
{
name = "ns2.example.com"
address = "192.168.0.4"
},
{
name = "ns3.example.com"
address = "192.168.1.3"
},
{
name = "ns4.example.com"
address = "192.168.1.4"
},
]
}
The following arguments are supported:
-
name
- (Required, Default: none) - (String) - The name of the name server group. -
comment
- (Optional, Default: empty) - (String) - Comment field. -
external_dns_servers
- (Required, Default: none) - (External Server Array) - A list of external dns servers. The external server object is used by other Infoblox objects. However only two attributes in the external server object are used by this resource. -
external_dns_servers --> name
- (Required, Default: none) - (String) - The FQDN of an external DNS server. -
external_dns_servers --> address
- (Required, Default: none) - (String) - The IP for the external DNS server.