ansible-roles/elastic-source-list/tasks/main.yml
Jérémy Lecour 11083007d6 refactoring of elastic roles
- extract java8
- extract elastic-source-list
2016-12-21 16:12:26 +01:00

26 lines
492 B
YAML

---
- name: APT https transport is enabled
apt:
name: apt-transport-https
state: installed
tags:
- system
- packages
- name: Elastic GPG key is installed
apt_key:
url: https://artifacts.elastic.co/GPG-KEY-elasticsearch
state: present
tags:
- system
- packages
- name: Elastic sources list is available
apt_repository:
repo: "deb https://artifacts.elastic.co/packages/5.x/apt stable main"
state: present
tags:
- system
- packages