Skip to content
This repository has been archived by the owner on Jun 24, 2022. It is now read-only.

Install GPG when adding the repo on Debian systems #822

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tasks/elasticsearch-Debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@
name: apt-transport-https
state: present

- name: Debian - Install gpg to support the requirement of apt_key in the next play
apt:
name: gpg
state: present

- name: Debian - Add Elasticsearch repository key
apt_key:
url: '{{ es_apt_key }}'
Expand Down