--- - name: Download Grafana 12.3.0 RPM get_url: url: https://dl.grafana.com/grafana/release/12.3.0/grafana_12.3.0_19497075765_linux_amd64.rpm dest: /tmp/grafana.rpm mode: '0644' timeout: 300 tags: dl - name: Install Grafana via yum yum: name: /tmp/grafana.rpm state: present become: yes tags: ginstall - name: Enable and start Grafana systemd: name: grafana-server enabled: yes state: started