Matej Focko
c4e3bcde62
* 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>
12 lines
320 B
YAML
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
|