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

13 lines
331 B
YAML
Raw Normal View History

---
- name: Download the latest release
ansible.builtin.unarchive:
src: https://releases.hashicorp.com/vault/1.14.2/vault_1.14.2_linux_amd64.zip
dest: ~/.local/bin/
remote_src: yes
creates: ~/.local/bin/vault
- name: Make vault executable
ansible.builtin.file:
path: ~/.local/bin/vault
mode: u+x