From 10e7bd9d1bf050f39ee5ab3e72f7e6377d68fb9d Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Sun, 23 Mar 2025 13:30:25 -0600 Subject: [PATCH] add basic config.hcl template for vault --- tasks/pkgs/vault.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tasks/pkgs/vault.yml b/tasks/pkgs/vault.yml index 4fa300e..3ab0478 100644 --- a/tasks/pkgs/vault.yml +++ b/tasks/pkgs/vault.yml @@ -72,6 +72,15 @@ mode: '0755' src: vault/Alpine/openrc + - name: Ensure /etc/vault exists + become: true + ansible.builtin.file: + state: directory + path: /etc/vault + owner: root + group: root + mode: '0755' + - name: Install vault basic config.hcl become: true ansible.builtin.template: