terraform/website/source/docs/providers
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
..
atlas
aws docs/aws: Add and as docs to the AWS resource (#7988) 2016-08-05 10:38:00 +10:00
azure
azurerm provider/azurerm: add traffic manager resources (#7826) 2016-07-31 23:46:15 +01:00
chef
clc
cloudflare
cloudstack Add project parameter to additional resources (#7828) 2016-07-27 17:30:18 +02:00
cobbler
consul Merge branch 'gh-2087-consul-service-resource' of https://github.com/maxenglander/terraform into maxenglander-gh-2087-consul-service-resource 2016-07-26 18:26:52 +01:00
datadog
dme
dnsimple Merge branch 'goloroden-patch-1' 2016-07-27 12:30:07 +01:00
do
docker website: Docs sweep for lists & maps 2016-07-28 15:49:53 -05:00
dyn
fastly
github
google providers/google: Allow custom Compute Engine service account 2016-08-04 19:25:28 -07:00
grafana
heroku
influxdb Improve influxdb provider (#7333) 2016-08-05 16:27:03 +10:00
librato
logentries
mailgun
mysql provider/mysql: user and grant resources (#7656) 2016-07-26 19:19:39 +01:00
openstack Fix subnet part of OS network example 2016-07-28 12:19:37 -04:00
packet
postgresql
powerdns provider/powerdns: Add support for PowerDNS 4 API (#7819) 2016-07-28 17:01:06 +01:00
random
rundeck
scaleway
softlayer
statuscake
template
terraform Fix terraform_remote_state documentation 2016-08-03 14:07:57 +01:00
tls
triton
ultradns
vcd
vsphere
index.html.markdown