terraform/website/source/docs
Raphael Randschau 7630a585a2 Improve influxdb provider (#7333)
* Improve influxdb provider

- reduce public funcs. We should not make things public that don't need to be public
- improve tests by verifying remote state
- add influxdb_user resource

    allows you to manage influxdb users:

    ```
    resource "influxdb_user" "admin" {
      name = "administrator"
      password = "super-secret"
      admin = true
    }
    ```

    and also database specific grants:

    ```
    resource "influxdb_user" "ro" {
      name = "read-only"
      password = "read-only"

      grant {
        database = "a"
        privilege = "read"
      }
    }
    ```

* Grant/ revoke admin access properly

* Add continuous_query resource

see
https://docs.influxdata.com/influxdb/v0.13/query_language/continuous_queries/
for the details about continuous queries:

```
resource "influxdb_database" "test" {
    name = "terraform-test"
}

resource "influxdb_continuous_query" "minnie" {
    name = "minnie"
    database = "${influxdb_database.test.name}"
    query = "SELECT min(mouse) INTO min_mouse FROM zoo GROUP BY time(30m)"
}
```
2016-08-05 16:27:03 +10:00
..
commands website: Docs sweep for lists & maps 2016-07-28 15:49:53 -05:00
configuration Correct typo in `length()` documentation (#7947) 2016-08-03 18:48:00 +01:00
import docs: Tidy up importabable resources list 2016-08-03 07:15:26 -07:00
internals website: Docs sweep for lists & maps 2016-07-28 15:49:53 -05:00
modules website: Docs sweep for lists & maps 2016-07-28 15:49:53 -05:00
plugins
providers Improve influxdb provider (#7333) 2016-08-05 16:27:03 +10:00
provisioners Update documentation 2016-07-08 19:34:59 +01:00
state Fix link to the remote state link post 0.7.x. (#7946) 2016-08-03 19:45:14 +01:00
index.html.markdown