Skip to content

Commit

Permalink
Merge pull request #268 from netixx/netixx/fix-target-yaml
Browse files Browse the repository at this point in the history
Fix tls-ca key for yaml
  • Loading branch information
karimra authored Oct 31, 2023
2 parents 0436882 + 8e6e6ea commit 49ba97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/target.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ type TargetConfig struct {
AuthScheme string `mapstructure:"auth-scheme,omitempty" json:"auth-scheme,omitempty" yaml:"auth-scheme,omitempty"`
Timeout time.Duration `mapstructure:"timeout,omitempty" json:"timeout,omitempty" yaml:"timeout,omitempty"`
Insecure *bool `mapstructure:"insecure,omitempty" json:"insecure,omitempty" yaml:"insecure,omitempty"`
TLSCA *string `mapstructure:"tls-ca,omitempty" json:"tls-ca,omitempty" yaml:"tlsca,omitempty"`
TLSCA *string `mapstructure:"tls-ca,omitempty" json:"tls-ca,omitempty" yaml:"tls-ca,omitempty"`
TLSCert *string `mapstructure:"tls-cert,omitempty" json:"tls-cert,omitempty" yaml:"tls-cert,omitempty"`
TLSKey *string `mapstructure:"tls-key,omitempty" json:"tls-key,omitempty" yaml:"tls-key,omitempty"`
SkipVerify *bool `mapstructure:"skip-verify,omitempty" json:"skip-verify,omitempty" yaml:"skip-verify,omitempty"`
Expand Down

0 comments on commit 49ba97c

Please sign in to comment.