dotfiles/roles/secrets_hcv/tasks/install_deb.yml
Matej Focko c4e3bcde62
fix(secrets_hcv): fix DEB package install
* Install HC Vault on both Debian and Ubuntu in the same way
* Fix the branching for userspace install vs package manager install

Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-12-29 17:53:23 +01:00

12 lines
320 B
YAML

---
- name: Add HashiCorp repository
ansible.builtin.deb822_repository:
name: hashicorp
types: deb
uris: https://apt.releases.hashicorp.com
suites: "{{ ansible_distribution_release }}"
components:
- main
signed_by: https://apt.releases.hashicorp.com/gpg
state: present
become: true