Skip to content

Name Server Group for forwarding zones

ppwarwick edited this page Aug 29, 2017 · 6 revisions

The Name Server Group for forwarding zones resource may be used to manage Name Server Groups for forwarding zones.

Example template

resource "infoblox_ns_group_forward" "example" {
  name = "example-ns-group"
  comment = "An example of a name server group for forwarding zones"
  forwarding_servers = [
    {
      forward_to = [
        {
	  name = "ns1.example.com"
	  address = "192.168.0.2"
        },
        {
	  name = "ns2.example.com"
	  address = "192.168.0.3"
        },
      ],
      forwarders_only = true
      name = "grid-member01.example.com"
      use_override_forwarders = true
    },
  ],
}

Argument Reference

The following arguments are supported:

  • name - (Required, Default: none) - (String) - The name of the name server group
  • comment - (Optional, Default: empty) - (String) - Comment field
  • forwarding_servers - (Required, Default: empty) - (Forwarding Member Server Array) - Contains per-Grid-member forwarding configuration. See Forwarding Member Server Array below for details.

Forwarding Member Server Array attributes

  • forward_to - (Optional, Default: empty) - (External Server array) - The names and IP addresses of the remote name servers where requests should be forwarded to. Required if use_override_forwarders is set to true. See 'External server array' below for details of values which can be set.
  • forwarders_only - (Optional, Default: false) - (Boolean) - Determines whether requests are sent to forwarders only and not to other name servers.
  • name - (Required: Default: none) - (String) - The FQDN of the grid member.
  • use_override_forwarders - (Optional, Default: false) - (Boolean) - Whether or not to use forward_to to send queries to remote name servers.

External Server Array attributes

  • address - (Required, Default: none) - (String) - The IP address of the external server.
  • name - (Required, Default: none) - (String) - A resolvable domain name for the external DNS server.
Clone this wiki locally