aboutsummaryrefslogtreecommitdiff
path: root/roles/influxdb/README.md
blob: 0cf028c9fed57419e5031a750a2537ed321d9697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# kompetenzbolzen.stuff.influxdb

example configuration

```
---
influx:
  https_enabled: true
  https_cert: '/etc/ssl/certs/{{ ansible_facts.fqdn }}.pem'
  https_key: '/etc/ssl/private/{{ ansible_facts.fqdn }}.key'

influx_dbs:
  - test1
  - test2

influx_users:
  test1:
    password: '1234'
    grants:
      - database: 'test1'
        privilege: 'WRITE'
```