Skip to content

Commit

Permalink
separated as it doesnt really belong in the block of cert details
Browse files Browse the repository at this point in the history
  • Loading branch information
dbudworth committed Jun 29, 2023
1 parent 6d64043 commit c181f09
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ type Requestor interface {
}

type CfgTLS struct {
InsecureSkipVerify bool `toml:"insecure,omitempty"`
CACert string `toml:"ca_cert_path,omitempty"`
ClientCertPath string `toml:"client_cert_path,omitempty"`
ClientKeyPath string `toml:"client_key_path,omitempty"`
ServerName string `toml:"server_name,omitempty"`
CACert string `toml:"ca_cert_path,omitempty"`
ClientCertPath string `toml:"client_cert_path,omitempty"`
ClientKeyPath string `toml:"client_key_path,omitempty"`
ServerName string `toml:"server_name,omitempty"`

InsecureSkipVerify bool `toml:"insecure,omitempty"`

MinVersion string `toml:"min_version,omitempty"`
CipherSuites []string `toml:"cipher_suites"`
Expand Down

0 comments on commit c181f09

Please sign in to comment.