packer-cn/communicator/winrm/config.go

17 lines
229 B
Go
Raw Normal View History

2015-06-14 01:00:40 -04:00
package winrm
import (
"time"
)
// Config is used to configure the WinRM connection
type Config struct {
Host string
Port int
Username string
Password string
Timeout time.Duration
2016-01-12 21:28:20 -05:00
Https bool
Insecure bool
2015-06-14 01:00:40 -04:00
}