12 lines
388 B
YAML
12 lines
388 B
YAML
|
---
|
||
|
- name: Add HashiCorp GPG Key
|
||
|
ansible.builtin.get_url:
|
||
|
url: https://apt.releases.hashicorp.com/gpg
|
||
|
dest: /etc/apt/keyrings/hashicorp.asc
|
||
|
mode: 0640
|
||
|
|
||
|
- name: Add HashiCorp repository
|
||
|
ansible.builtin.apt_repository:
|
||
|
repo: "deb [signed-by=/etc/apt/keyrings/hashicorp.gpg] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main"
|
||
|
state: present
|