github.com/mmcquillan/packer@v1.1.1-0.20171009221028-c85cf0483a5d/communicator/winrm/config.go (about) 1 package winrm 2 3 import ( 4 "time" 5 6 "github.com/masterzen/winrm" 7 ) 8 9 // Config is used to configure the WinRM connection 10 type Config struct { 11 Host string 12 Port int 13 Username string 14 Password string 15 Timeout time.Duration 16 Https bool 17 Insecure bool 18 TransportDecorator func() winrm.Transporter 19 }