github.com/maheshbr/terraform@v0.3.1-0.20141020033300-deec7194a3ea/website/source/docs/providers/dnsimple/index.html.markdown (about) 1 --- 2 layout: "dnsimple" 3 page_title: "Provider: DNSimple" 4 sidebar_current: "docs-dnsimple-index" 5 --- 6 7 # DNSimple Provider 8 9 The DNSimple provider is used to interact with the 10 resources supported by DNSimple. The provider needs to be configured 11 with the proper credentials before it can be used. 12 13 Use the navigation to the left to read about the available resources. 14 15 ## Example Usage 16 17 ``` 18 # Configure the DNSimple provider 19 provider "dnsimple" { 20 token = "${var.dnsimple_token}" 21 email = "${var.dnsimple_email}" 22 } 23 24 # Create a record 25 resource "dnsimple_record" "www" { 26 ... 27 } 28 ``` 29 30 ## Argument Reference 31 32 The following arguments are supported: 33 34 * `token` - (Required) The DNSimple API token 35 * `email` - (Required) The email associated with the token 36 37