-
Notifications
You must be signed in to change notification settings - Fork 10
Zone Delegated
The Zone Delegated resource allows users to setup delegations between infoblox and DNS servers that are authoritative for a zone.
Fields description
-
fqdn
- (required) FQDN of the zone that we are delegating -
zone_format
- (optional) Defaults to "FORWARD" this is the zone format that we are using, could also be IPV4 or IPV6 -
comment
- (optional) Comment on the zone -
disable
- (optional) Controls if the zone is disabled on not -
delegate_to
- (required) Tells infoblox about which servers to delegate the queries to. -
delegated_ttl
- (optional) The ttl for the delegation -
disable
- (optional) Is the delegation zone disabled -
fqdn
- (optional) The FQDN for the zone that is being delegated -
locked
- (optional) Is the record locked to prevent changes -
use_delegated_ttl
- (optional) Boolean that tells infoblox to use the delegated ttl -
zone_format
- (optional) Determines the format of this zone.Valid values are: FORWARD IPV4 IPV6
-
ns_group
- (optional) The delegation NS group bound with delegated zone. -
view
- (optional) DNS view for this zone
resource "infoblox_zone_delegated" "delegate1" {
fqdn = "prd1.hempaas.bskyb.com"
comment = "delegation tests edited"
disable = false
zone_format = "FORWARD"
delegate_to {
name="prdibxdns03.bskyb.com"
address="10.92.16.131"
}
}