aboutsummaryrefslogtreecommitdiff
path: root/roles/grafana/tasks/main.yml
blob: 745f0af63917887ee8f3b4ae4c702a4c467ca9fd (plain)
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
---
- name: Install GnuPG
  apt:
    name: gnupg2
  become: yes

- name: Install Grafana STABLE Repository
  copy:
    dest: /etc/apt/sources.list.d/grafana.list
    content: deb https://packages.grafana.com/oss/deb stable main
  become: yes
  register: install_repo

- name: Install Grafana Repo Key
  apt_key:
    url: https://packages.grafana.com/gpg.key
    state: present
  become: yes

- name: Update APT cache
  apt:
    update_cache: yes
  become: yes
  when: install_repo.changed

- name: Install Grafana
  apt:
    name: grafana
  become: yes
  notify: Restart Grafana

- name: Check for changed cert
  command: /bin/true
  when: cert_changed
  notify: Restart Grafana

- name: Install configuration
  template:
    src: '{{ item }}.j2'
    dest: '/etc/grafana/{{ item }}'
    owner: root
    group: grafana
    mode: '640'
  become: yes
  loop:
    - grafana.ini
    - ldap.toml
  notify: Restart Grafana