1
0
mirror of https://git.lapiole.org/dani/ansible-roles.git synced 2025-04-30 00:53:23 +02:00
2021-12-01 19:13:34 +01:00

16 lines
448 B
YAML

---
- name: Add Filebeat repo key
apt_key:
url: https://artifacts.elastic.co/GPG-KEY-elasticsearch
environment:
https_proxy: "{{ system_proxy | default('') }}"
tags: repo,logs
- name: Add Filebeat repository
apt_repository:
repo: deb https://artifacts.elastic.co/packages/{{ filebeat_major_version }}.x/apt stable main
filename: filebeat
environment:
https_proxy: "{{ system_proxy | default('') }}"
tags: repo,logs