diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-07 01:54:25 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-07 01:54:25 +0200 |
commit | 2ccf20e70715acd02f86415a61341476ef2c2f14 (patch) | |
tree | 9dbf4ecc9a054f1588cea2e0557ef02b49ab5ac4 /roles/influxdb/README.md | |
parent | 4000e16e20ae47423542db221b9ab636cf3d79b9 (diff) | |
download | ansible_collection-2ccf20e70715acd02f86415a61341476ef2c2f14.tar.gz |
add influxdb
Diffstat (limited to 'roles/influxdb/README.md')
-rw-r--r-- | roles/influxdb/README.md | 22 |
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' +``` |