aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/monitoring/tasks/config.yaml
blob: 20e64dbe57f7db20444c96eaca268d28e387f431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---

- name: 'config | Set the Prom config'
  ansible.builtin.template:
    src: 'prometheus.yml.j2'
    dest: '/etc/prometheus/prometheus.yml'
    mode: '644'

- name: 'config | Start the service'
  ansible.builtin.service:
    name: 'prometheus'
    state: 'restarted'
    enabled: true