github.com/ttysteale/packer@v0.8.2-0.20150708160520-e5f8ea386ed8/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 }