github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/librato/index.html.markdown (about)

     1  ---
     2  layout: "librato"
     3  page_title: "Provider: Librato"
     4  sidebar_current: "docs-librato-index"
     5  description: |-
     6    The Librato provider is used to interact with the resources supported by Librato. The provider needs to be configured with the proper credentials before it can be used.
     7  ---
     8  
     9  # Librato Provider
    10  
    11  The Librato provider is used to interact with the
    12  resources supported by Librato. 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  ```hcl
    20  # Configure the Librato provider
    21  provider "librato" {
    22    email = "ops@company.com"
    23    token = "${var.librato_token}"
    24  }
    25  
    26  # Create a new space
    27  resource "librato_space" "default" {
    28    # ...
    29  }
    30  ```
    31  
    32  ## Argument Reference
    33  
    34  The following arguments are supported:
    35  
    36  * `token` - (Required) Librato API token. It must be provided, but it can also
    37    be sourced from the `LIBRATO_TOKEN` environment variable.
    38  * `email` - (Required) Librato email address. It must be provided, but it can
    39    also be sourced from the `LIBRATO_EMAIL` environment variable.