github.com/kikitux/packer@v0.10.1-0.20160322154024-6237df566f9f/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  }