nomad/ansible/roles/hashicorp-apt/tasks/main.yml
2022-12-08 01:57:52 +00:00

12 lines
315 B
YAML

---
- name: Add hashicorp GPG key
become: true
apt_key:
url: https://apt.releases.hashicorp.com/gpg
state: present
- name: Add hashicorp repository
become: true
apt_repository:
repo: deb [arch=amd64] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main
state: present