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