13 lines
288 B
YAML
13 lines
288 B
YAML
---
|
|
- 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"
|
|
filename: grafana
|
|
update_cache: yes
|
|
state: present
|