github.com/rahart/packer@v0.12.2-0.20161229105310-282bb6ad370f/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 }