FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

dyn_record

Provides a Dyn DNS record resource.

Example Usage

# Add a record to the domain
resource "dyn_record" "foobar" {
    zone = "${var.dyn_zone}"
    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