effde3f736
* Ungenutzte Rollen in Archiv verschoben * Group_Vars und Playbook Bezeichnungen vereinheitlicht * Archiv aufgeräumt
22 lines
471 B
YAML
22 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
|