Skip to content

A Record

craig-duffin edited this page Jul 12, 2017 · 7 revisions

The A_Record resource allows for the creation and management of a A_Record on infoblox.

Example Usage

resource "infoblox_arecord" "a_record_demo" {
       name = "craigtest.test-ovp.bskyb.com"
       address = "127.0.0.1"
       ttl = 500
}

Argument Reference

The following arguments are supported:

  • name - (Required) - Name for A record in FQDN format. This value can be in unicode format.

  • address - (Required) - The IPv4 Address of the record.

  • ttl - (Optional, Default = empty) - The Time To Live (TTL) value for record. A 32-bit unsigned integer that represents the duration, in seconds, for which the record is valid (cached). Zero indicates that the record should not be cached.

Clone this wiki locally