ansible/roles/opendistro_common/tasks/main.yml
Jeltz 761df9d0b3
Some checks failed
continuous-integration/drone/push Build is failing
Add opendistro_common for OpenDistro repository
2021-03-03 21:45:56 +01:00

20 lines
421 B
YAML

---
- name: Trust OpenDistro GPG key
become: true
apt_key:
data: "{{ lookup('file', 'opendistro.gpg') }}"
state: present
- name: Install OpenDistro repository
become: true
apt_repository:
repo: deb https://d3g5vo6xdbdb9a.cloudfront.net/apt stable main
state: present
filename: opendistro
- name: Install default JRE
become: true
apt:
name: default-jre-headless
state: latest
...