mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-27 23:53:18 +02:00
12 lines
313 B
YAML
12 lines
313 B
YAML
![]() |
---
|
||
|
- name: Add ElasticSearch repo key
|
||
|
apt_key:
|
||
|
url: https://artifacts.elastic.co/GPG-KEY-elasticsearch
|
||
|
tags: repo
|
||
|
|
||
|
- name: Add ElasticSearch repository
|
||
|
apt_repository:
|
||
|
repo: deb https://artifacts.elastic.co/packages/{{ es_major_version }}.x/apt stable main
|
||
|
filename: elasticsearch
|
||
|
tags: repo
|