dotfiles/roles/user/secrets/hcv/tasks/main.yml
Matej Focko a1235a25b4
fix(user/secrets/hcv): include vssh script
Signed-off-by: Matej Focko <me@mfocko.xyz>
2023-09-06 11:42:26 +02:00

23 lines
689 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: Install HC Vault via package manager
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora", "Ubuntu"]
block:
- name: Enable repository
ansible.builtin.include_tasks: "install_{{ ansible_distribution }}.yml"
- name: Install Vault
ansible.builtin.package:
name: vault
state: present
become: true
- name: Install HC Vault to userspace
ansible.builtin.include_tasks: install_user.yml
when: ansible_distribution not in [ "AlmaLinux", "CentOS", "Fedora", "Ubuntu"]
- name: Install vssh script
ansible.builtin.copy:
src: files/vssh.sh
dest: ~/.local/bin/vssh
mode: 0700
creates: ~/.local/bin/vssh