github.com/emate/packer@v0.8.1-0.20150625195101-fe0fde195dc6/communicator/winrm/config.go (about) 1 package winrm 2 3 import ( 4 "time" 5 ) 6 7 // Config is used to configure the WinRM connection 8 type Config struct { 9 Host string 10 Port int 11 Username string 12 Password string 13 Timeout time.Duration 14 }