github.com/yoctocloud/packer@v0.6.2-0.20160520224004-e11a0a18423f/communicator/winrm/config.go (about) 1 package winrm 2 3 import ( 4 "net/http" 5 "time" 6 ) 7 8 // Config is used to configure the WinRM connection 9 type Config struct { 10 Host string 11 Port int 12 Username string 13 Password string 14 Timeout time.Duration 15 Https bool 16 Insecure bool 17 TransportDecorator func(*http.Transport) http.RoundTripper 18 }