chore: replace apt_key to get_url

This commit is contained in:
Adrien Waksberg 2024-02-16 10:34:28 +01:00
parent 98769717c4
commit 5c17df22bf
4 changed files with 12 additions and 4 deletions

View file

@ -7,13 +7,21 @@
tags: elasticsearch
- name: Add repository key
ansible.builtin.apt_key:
ansible.builtin.get_url:
url: https://artifacts.elastic.co/GPG-KEY-elasticsearch
dest: /etc/apt/keyrings/elastic.asc
owner: root
group: root
mode: 0644
checksum: sha256:db52809c5f6b27f9c2bed45cb43e398c659275f3d35305653c6750a0db90f5eb
tags: elasticsearch
- name: Add repository
ansible.builtin.apt_repository:
repo: "deb https://artifacts.elastic.co/packages/{{ elasticsearch_major_version }}.x/apt stable main"
repo: >
deb [signed-by=/etc/apt/keyrings/elastic.asc]
https://artifacts.elastic.co/packages/{{ elasticsearch_major_version }}.x/apt stable main
filename: elastic
tags: elasticsearch
- name: Install package