ansible-ffrgb/roles/influxdb/tasks/main.yml

11 lines
286 B
YAML
Raw Normal View History

---
- name: Enable influxdb apt-key
2021-09-06 13:37:18 +02:00
apt_key: url="https://repos.influxdata.com/influxdb.key"
- name: Enable influxdb repository
2021-09-06 13:37:18 +02:00
apt_repository: repo="deb https://repos.influxdata.com/debian {{ ansible_distribution_release }} stable"
- name: Install influxdb
apt: name=influxdb