github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/website/source/docs/providers/dyn/index.html.markdown (about) 1 --- 2 layout: "dyn" 3 page_title: "Provider: Dyn" 4 sidebar_current: "docs-dyn-index" 5 description: |- 6 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. 7 --- 8 9 # Dyn Provider 10 11 The Dyn provider is used to interact with the 12 resources supported by Dyn. 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 Dyn provider 21 provider "dyn" { 22 customer_name = "${var.dyn_customer_name}" 23 username = "${var.dyn_username}" 24 password = "${var.dyn_password}" 25 } 26 27 # Create a record 28 resource "dyn_record" "www" { 29 ... 30 } 31 ``` 32 33 ## Argument Reference 34 35 The following arguments are supported: 36 37 * `customer_name` - (Required) The Dyn customer name. It must be provided, but it can also be sourced from the `DYN_CUSTOMER_NAME` environment variable. 38 * `username` - (Required) The Dyn username. It must be provided, but it can also be sourced from the `DYN_USERNAME` environment variable. 39 * `password` - (Required) The Dyn password. It must be provided, but it can also be sourced from the `DYN_PASSWORD` environment variable.