FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

ultradns_record

Provides a UltraDNS record resource.

Example Usage

# 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
}

Argument Reference

See related part of UltraDNS Docs for details about valid values.

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io