summaryrefslogtreecommitdiff
path: root/roles/vault
diff options
context:
space:
mode:
Diffstat (limited to 'roles/vault')
-rw-r--r--roles/vault/lxc.yml29
1 files changed, 0 insertions, 29 deletions
diff --git a/roles/vault/lxc.yml b/roles/vault/lxc.yml
deleted file mode 100644
index 0302804..0000000
--- a/roles/vault/lxc.yml
+++ /dev/null
@@ -1,29 +0,0 @@
----
-- name: Install Vault to LXC
- hosts: local
-
- vars_files:
- - ../variables.yml
-
- tasks:
-
- - name: Creating container
- lxc_container:
- name: ansible-alpine3.11
- clone_name: "{{ vault_user }}"
- backing_store: dir
- state: stopped
-
- - name: Starting container
- lxc_container:
- name: "{{ vault_user }}"
- state: started
-
- - name: Waiting for container
- shell: until ping -c1 {{ vault_user }}.lxc; do :; done
- changed_when: false
-
- become: true
- become_user: root
-
-- import_playbook: main.yml