FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

dnsimple_record

Provides a DNSimple record resource.

Example Usage

# Add a record to the root domain
resource "dnsimple_record" "foobar" {
	domain = "${var.dnsimple_domain}"
	name = ""
	value = "192.168.0.11"
	type = "A"
	ttl = 3600
}
# Add a record to a sub-domain
resource "dnsimple_record" "foobar" {
	domain = "${var.dnsimple_domain}"
	name = "terraform"
	value = "192.168.0.11"
	type = "A"
	ttl = 3600
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io