17 lines
483 B
YAML
17 lines
483 B
YAML
---
|
|
# Add Elasticsearch GPG Key
|
|
- name: Addding Elasticsearch sources GPG key
|
|
apt_key: url='https://artifacts.elastic.co/GPG-KEY-elasticsearch' state=present
|
|
|
|
# Add Elasticsearch repositories for Debian 8
|
|
- name: Adding Elasticsearch sources
|
|
apt_repository: repo='deb https://artifacts.elastic.co/packages/5.x/apt stable main' state=present
|
|
|
|
# Install Elasticsearch
|
|
- name: Installing Elasticsearch
|
|
apt:
|
|
update_cache: yes
|
|
state: present
|
|
name:
|
|
- elasticsearch
|