Ansible/roles/luther38.metricbeat/tasks/install-repo.yml

27 lines
561 B
YAML
Raw Normal View History

2019-04-30 10:03:30 -07:00
---
- name: Install Elastic GPG Key
become: true
apt_key:
url: "https://artifacts.elastic.co/GPG-KEY-elasticsearch"
state: present
id: 46095ACC8548582C1A2699A9D27D666CD88E42B4
- name: Install apt-transport-https
become: true
apt:
name: apt-transport-https
- name: Add Elastic Repo
become: true
copy:
dest: '/etc/apt/sources.list.d/elastic-7.x.list'
content: "deb https://artifacts.elastic.co/packages/7.x/apt stable main"
2019-04-30 10:03:30 -07:00
- name: Update Packages
become: true
apt:
update_cache: true