aboutsummaryrefslogtreecommitdiff
path: root/roles/influxdb/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'roles/influxdb/README.md')
-rw-r--r--roles/influxdb/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/influxdb/README.md b/roles/influxdb/README.md
new file mode 100644
index 0000000..0cf028c
--- /dev/null
+++ b/roles/influxdb/README.md
@@ -0,0 +1,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'
+```