mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
16 lines
448 B
YAML
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
|