Ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
448 B

---
- 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