Skip to content

Commit

Permalink
fix: typo in config.Config struct
Browse files Browse the repository at this point in the history
  • Loading branch information
maeb committed Jul 4, 2023
1 parent b4ccf48 commit 534c477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (
// Config represents the persistent configuration.
type Config struct {
Server string `yaml:"server,omitempty" mapstructure:"server"`
RootCAs string `yaml:"certificate-authority-data,omitempty" mastructure:"certificate-authority-data"`
RootCAs string `yaml:"certificate-authority-data,omitempty" mapstructure:"certificate-authority-data"`
ServerNameOverride string `yaml:"server-name-override,omitempty" mapstructure:"server-name-override"`
AuthProvider *AuthProvider `yaml:"auth-provider,omitempty" mapstructure:"auth-provider"`
}
Expand Down

0 comments on commit 534c477

Please sign in to comment.