Skip to content

Zone Delegated

Rui Moreira edited this page Aug 10, 2017 · 9 revisions

The Zone Delegated resource allows users to setup delegations between infoblox and DNS servers that are authoritative for a zone.

Fields description

  • fqdn - FQDN of the zone that we are delegating
  • zoneformat - Defaults to "FORWARD" this is the zone format that we are using, could also be IPV4 or IPV6
  • comment - Comment on the zone
  • disable - Controls if the zone is disabled on not
  • delegates - Tells infoblox about which servers to delegate the queries to.

Example terraform template

resource "infoblox_zone_delegated" "delegate1" {
        fqdn = "prd1.hempaas.bskyb.com"
        comment = "delegation tests edited"
        disable = false
        zoneformat = "FORWARD"
        delegateto {
                name="prdibxdns03.bskyb.com"
                address="10.92.16.131"
        }
}
Clone this wiki locally