mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 15:43:22 +02:00
12 lines
323 B
YAML
12 lines
323 B
YAML
---
|
|
- name: Add ElasticSearch repo key
|
|
apt_key:
|
|
url: https://artifacts.elastic.co/GPG-KEY-elasticsearch
|
|
tags: repo,logs
|
|
|
|
- name: Add ElasticSearch repository
|
|
apt_repository:
|
|
repo: deb https://artifacts.elastic.co/packages/{{ es_major_version }}.x/apt stable main
|
|
filename: elasticsearch
|
|
tags: repo,logs
|