diff --git a/plugins/common/auth/basic_auth.go b/plugins/common/auth/basic_auth.go index eba2f5072f3f1..6f92de809cee6 100644 --- a/plugins/common/auth/basic_auth.go +++ b/plugins/common/auth/basic_auth.go @@ -6,8 +6,8 @@ import ( ) type BasicAuth struct { - Username string - Password string + Username string `toml:"username"` + Password string `toml:"password"` } func (b *BasicAuth) Verify(r *http.Request) bool {