github.com/kimor79/packer@v0.8.7-0.20151221212622-d507b18eb4cf/communicator/winrm/config.go (about)

     1  package winrm
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  // Config is used to configure the WinRM connection
     8  type Config struct {
     9  	Host     string
    10  	Port     int
    11  	Username string
    12  	Password string
    13  	Timeout  time.Duration
    14  }