From bcb7b8751cf0f10a874dc1baac8d8c57771a3422 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Fri, 13 Mar 2020 11:01:43 -0700 Subject: [PATCH] fix googlecompute password interpolation --- helper/communicator/step_connect_winrm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/helper/communicator/step_connect_winrm.go b/helper/communicator/step_connect_winrm.go index 8825f98b0..5e7d13824 100644 --- a/helper/communicator/step_connect_winrm.go +++ b/helper/communicator/step_connect_winrm.go @@ -131,6 +131,7 @@ func (s *StepConnectWinRM) waitForWinRM(state multistep.StateBag, ctx context.Co } if config.Password != "" { password = config.Password + s.Config.WinRMPassword = password } }