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