From 3fa7249d2319bdaf1f89adf6c352be411de723cf Mon Sep 17 00:00:00 2001
From: Attila Farkas <ati@mail.muni.cz>
Date: Mon, 30 Nov 2020 10:53:54 +0100
Subject: [PATCH] Add default winrm password

---
 modules/preprocessing.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/preprocessing.py b/modules/preprocessing.py
index 95e7de1..8726db2 100644
--- a/modules/preprocessing.py
+++ b/modules/preprocessing.py
@@ -85,6 +85,7 @@ def _add_windows_attributes(host):
     """Add vagrant attributes to windows hosts"""
     host["communicator"] = "winrm"
     host["winrm_username"] = "vagrant"
+    host["winrm_password"] = "vagrant"
 
 
 def preprocess(definitions, flags):
-- 
GitLab