From ac7b6a17cbc95c80e17d5fee8f254fbce049cd9e Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Sat, 9 Feb 2019 15:00:15 +0100 Subject: [PATCH] Make vagrant ask for ansible vault password --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index bb32fef..28f2e28 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -13,6 +13,7 @@ Vagrant.configure(2) do |config| ansible.verbose = "v" ansible.compatibility_mode = "2.0" ansible.playbook = "playbook.yml" + ansible.ask_vault_pass = true ansible.host_vars = { "datacoop" => {"ansible_python_interpreter" => "/usr/bin/python3.6"} }