github.com/nathanielks/terraform@v0.6.1-0.20170509030759-13e1a62319dc/website/source/docs/providers/influxdb/r/database.html.md (about)

     1  ---
     2  layout: "influxdb"
     3  page_title: "InfluxDB: influxdb_database"
     4  sidebar_current: "docs-influxdb-resource-database"
     5  description: |-
     6    The influxdb_database resource allows an InfluxDB database to be created.
     7  ---
     8  
     9  # influxdb\_database
    10  
    11  The database resource allows a database to be created on an InfluxDB server.
    12  
    13  ## Example Usage
    14  
    15  ```hcl
    16  resource "influxdb_database" "metrics" {
    17      name = "awesome_app"
    18  }
    19  ```
    20  
    21  ## Argument Reference
    22  
    23  The following arguments are supported:
    24  
    25  * `name` - (Required) The name for the database. This must be unique on the
    26    InfluxDB server.
    27  
    28  ## Attributes Reference
    29  
    30  This resource exports no further attributes.