github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/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  description: |-
     6    The DNSimple provider is used to interact with the resources supported by DNSimple. The provider needs to be configured with the proper credentials before it can be used.
     7  ---
     8  
     9  # DNSimple Provider
    10  
    11  The DNSimple provider is used to interact with the
    12  resources supported by DNSimple. 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 DNSimple provider
    21  provider "dnsimple" {
    22      token = "${var.dnsimple_token}"
    23      email = "${var.dnsimple_email}"
    24  }
    25  
    26  # Create a record
    27  resource "dnsimple_record" "www" {
    28      ...
    29  }
    30  ```
    31  
    32  ## Argument Reference
    33  
    34  The following arguments are supported:
    35  
    36  * `token` - (Required) The DNSimple API token. It must be provided, but it can also be sourced from the `DNSIMPLE_TOKEN` environment variable.
    37  * `email` - (Required) The email associated with the token. It must be provided, but it can also be sourced from the `DNSIMPLE_EMAIL` environment variable.
    38  
    39