github.com/HashDataInc/packer@v1.3.2/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  }