FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

InfluxDB Provider

The InfluxDB provider allows Terraform to create Databases in InfluxDB. InfluxDB is a database server optimized for time-series data.

The provider configuration block accepts the following arguments:

Use the navigation to the left to read about the available resources.

Example Usage

provider "influxdb" {
    url = "http://influxdb.example.com/"
    username = "terraform"
}

resource "influxdb_database" "metrics" {
    name = "awesome_app"
}

resource "influxdb_continuous_query" "minnie" {
    name = "minnie"
    database = "${influxdb_database.metrics.name}"
    query = "SELECT min(mouse) INTO min_mouse FROM zoo GROUP BY time(30m)"
}

resource "influxdb_user" "paul" {
    name = "paul"
    password = "super-secret"
}

See the source of this document at Terraform.io