Provides an UltraDNS record resource.
# Add a record to the domain
resource "ultradns_record" "foobar" {
zone = "${var.ultradns_domain}"
name = "terraform"
rdata = ["192.168.0.11"]
type = "A"
ttl = 3600
}
See related part of UltraDNS Docs for details about valid values.
The following arguments are supported:
zone - (Required) The domain to add the record to name - (Required) The name of the record rdata - (Required) An array containing the values of the record type - (Required) The type of the record ttl - (Optional) The TTL of the record The following attributes are exported:
id - The record ID name - The name of the record rdata - An array containing the values of the record type - The type of the record ttl - The TTL of the record zone - The domain of the record hostname - The FQDN of the record
© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/ultradns/r/record.html