github.com/minamijoyo/terraform@v0.7.8-0.20161029001309-18b3736ba44b/website/source/docs/providers/ultradns/index.html.markdown (about) 1 --- 2 layout: "ultradns" 3 page_title: "Provider: UltraDNS" 4 sidebar_current: "docs-ultradns-index" 5 description: |- 6 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. 7 --- 8 9 # UltraDNS Provider 10 11 The UltraDNS provider is used to interact with the 12 resources supported by UltraDNS. The provider needs to be configured 13 with the proper credentials before it can be used. 14 15 Use the navigation to the left to read about the available resources. 16 17 ## Example Usage 18 19 ``` 20 # Configure the UltraDNS provider 21 provider "ultradns" { 22 username = "${var.ultradns_username}" 23 password = "${var.ultradns_password}" 24 baseurl = "https://test-restapi.ultradns.com/" 25 } 26 27 # Create a record 28 resource "ultradns_record" "www" { 29 ... 30 } 31 ``` 32 33 ## Argument Reference 34 35 The following arguments are supported: 36 37 * `username` - (Required) The UltraDNS username. It must be provided, but it can also be sourced from the `ULTRADNS_USERNAME` environment variable. 38 * `password` - (Required) The password associated with the username. It must be provided, but it can also be sourced from the `ULTRADNS_PASSWORD` environment variable. 39 * `baseurl` - (Required) The base url for the UltraDNS REST API, but it can also be sourced from the `ULTRADNS_BASEURL` environment variable.