blob: 61dd8638696783bd34f66c78e74cc20ef60a4200 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
---
- name: add debian repository
include_role:
name: apt-repo/grafana
- name: install apt packages
apt:
name: grafana
state: present
- name: configure grafana server
loop: "{{ grafana_config_server | dict2items }}"
loop_control:
label: "{{ item.key }}"
ini_file:
path: /etc/grafana/grafana.ini
section: server
option: "{{ item.key }}"
value: "{{ item.value | string }}"
notify: restart grafana
- name: configure grafana analytics
loop: "{{ grafana_config_analytics | dict2items }}"
loop_control:
label: "{{ item.key }}"
ini_file:
path: /etc/grafana/grafana.ini
section: analytics
option: "{{ item.key }}"
value: "{{ item.value | string }}"
notify: restart grafana
- name: configure grafana security
loop: "{{ grafana_config_security | dict2items }}"
loop_control:
label: "{{ item.key }}"
ini_file:
path: /etc/grafana/grafana.ini
section: security
option: "{{ item.key }}"
value: "{{ item.value | string }}"
notify: restart grafana
- name: configure grafana users
loop: "{{ grafana_config_users | dict2items }}"
loop_control:
label: "{{ item.key }}"
ini_file:
path: /etc/grafana/grafana.ini
section: users
option: "{{ item.key }}"
value: "{{ item.value | string }}"
notify: restart grafana
- name: make sure grafan-server is enabled and started
systemd:
name: grafana-server
state: started
enabled: yes
|