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 provider/atlas: Add a Atlas Artifact Data Source (#7419) 2016-07-01 10:29:53 -05:00
aws docs/aws: Add and as docs to the AWS resource (#7988) 2016-08-05 10:38:00 +10:00
azure docs/azure: Small changes to remove the use of double 2016-07-22 11:41:15 +01:00
azurerm provider/azurerm: add traffic manager resources (#7826) 2016-07-31 23:46:15 +01:00
chef api.opscode.com should be api.chef.io (#6960) 2016-06-01 09:35:09 +01:00
clc [clc] additional server types + docs 2016-05-10 10:36:52 -07:00
cloudflare provider/cloudflare: Add proxied option (#5508) 2016-04-27 18:04:07 +01:00
cloudstack Add project parameter to additional resources (#7828) 2016-07-27 17:30:18 +02:00
cobbler provider/cobbler: Cobbler Provider 2016-04-16 08:54:59 -05:00
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 provider/datadog: add timeboard resource. upgrade vendored go-datadog-api to support read-only option. (#6900) 2016-06-15 18:44:49 +02:00
dme provider/dme: Clarify GTD meaning in docs 2016-01-20 20:23:36 -05:00
dnsimple Merge branch 'goloroden-patch-1' 2016-07-27 12:30:07 +01:00
do Website: Adding an import section to the bottom of the page of importable resources (#7703) 2016-07-19 17:22:30 +01:00
docker website: Docs sweep for lists & maps 2016-07-28 15:49:53 -05:00
dyn
fastly provider/fastly: Add support for Cache Settings (#6781) 2016-05-23 15:07:00 -05:00
github +github_repository_collaborator (#6861) 2016-06-02 01:06:35 +01:00
google providers/google: Allow custom Compute Engine service account 2016-08-04 19:25:28 -07:00
grafana Grafana Provider, with Data Source and Dashboard resources (#6206) 2016-05-20 10:20:17 +01:00
heroku Fix typo on heroku_cert example 2015-08-14 18:56:57 -03:00
influxdb Improve influxdb provider (#7333) 2016-08-05 16:27:03 +10:00
librato provider/librato: Add Librato provider 2016-04-29 14:49:55 -05:00
logentries provider/logentries: Implementing logentries provider (#7067) 2016-07-12 14:14:39 +01:00
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 Clarify the docs for Packet a bit. 2015-12-16 09:57:58 -05:00
postgresql provider/postgresql: default ssl_mode is "prefer" 2016-04-17 08:32:02 -07:00
powerdns provider/powerdns: Add support for PowerDNS 4 API (#7819) 2016-07-28 17:01:06 +01:00
random website: docs for the "random" provider 2016-05-14 16:49:10 -07:00
rundeck
scaleway provider/scaleway: Expose IPv6 support, improve documentation (#7784) 2016-07-25 12:49:09 +01:00
softlayer Added softlayer virtual guest and ssh keys functionality: 2016-05-03 15:58:58 -05:00
statuscake Adding some documentation for the StatusCake provider 2015-11-30 10:44:21 +00:00
template provider/template: validate vars are primitives 2016-07-11 16:01:05 -05:00
terraform Fix terraform_remote_state documentation 2016-08-03 14:07:57 +01:00
tls Convert tls_cert_request to be a data source 2016-07-02 08:07:53 -07:00
triton provider/triton: fixed triton key_material documentation 2016-04-19 21:26:39 -04:00
ultradns UltraDNS Provider 2016-03-20 12:10:59 -05:00
vcd Update doco for ip enhancements in vmware-govcd 2016-02-14 21:22:30 +11:00
vsphere Vsphere: Added uuid attributes (#4382) 2016-06-29 21:45:59 +01:00
index.html.markdown website: fix up some wording on providers index 2016-06-09 16:44:28 -05:00