FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

Dyn Provider

The Dyn provider is used to interact with the resources supported by Dyn. The provider needs to be configured with the proper credentials before it can be used.

Use the navigation to the left to read about the available resources.

Example Usage

# Configure the Dyn provider
provider "dyn" {
    customer_name = "${var.dyn_customer_name}"
    username = "${var.dyn_username}"
    password = "${var.dyn_password}"
}

# Create a record
resource "dyn_record" "www" {
    ...
}

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io