dotfiles/roles/user/secrets/hcv/tasks/install_Ubuntu.yml

14 lines
418 B
YAML
Raw Normal View History

---
- name: Add HashiCorp GPG Key
ansible.builtin.get_url:
url: https://apt.releases.hashicorp.com/gpg
dest: /etc/apt/keyrings/hashicorp.asc
mode: 0640
become: true
- 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
become: true