FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

UltraDNS Provider

The UltraDNS provider is used to interact with the resources supported by UltraDNS. 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 UltraDNS provider
provider "ultradns" {
    username = "${var.ultradns_username}"
    password = "${var.ultradns_password}"
    baseurl  = "https://test-restapi.ultradns.com/"
}

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

Argument Reference

The following arguments are supported:


See the source of this document at Terraform.io