homeserver/Archiv/mgrote.influxdb/tasks/config.yml
Quotengrote b3b22d4591
Housekeeping (#46)
* Ungenutzte Rollen in Archiv verschoben

* Group_Vars und Playbook Bezeichnungen vereinheitlicht
2020-10-14 10:54:16 +02:00

23 lines
471 B
YAML

---
- name: copy influxdb.conf
become: yes
template:
src: influxdb.conf
dest: /etc/influxdb/influxdb.conf
- name: restart_influxd
service:
name: influxd
state: started
enabled: yes
- name: create influxdb users
become: yes
influxdb_user:
user_name: "{{ item.name }}"
user_password: "{{ item.password }}"
state: present
hostname: localhost
loop: "{{ influxdb_users }}"
no_log: true