ansible/roles/grafana/tasks/Debian.yaml

13 lines
288 B
YAML
Raw Normal View History

2019-12-02 02:40:29 +00:00
---
- name: add grafana apt key
apt_key:
url: https://packages.grafana.com/gpg.key
state: present
- name: configure apt repository
apt_repository:
repo: "deb https://packages.grafana.com/oss/deb stable main"
2020-10-10 15:51:04 +00:00
filename: grafana
2019-12-02 02:40:29 +00:00
update_cache: yes
state: present