Skip to content

Commit

Permalink
tag some config fields as secret
Browse files Browse the repository at this point in the history
  • Loading branch information
IngoRoessner committed Jul 31, 2024
1 parent ff4532f commit 55abc8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/configuration/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ type Config struct {
GuaranteeChangeAfter string `json:"guarantee_change_after"`

AuthEndpoint string `json:"auth_endpoint"`
AuthClientId string `json:"auth_client_id"`
AuthUsername string `json:"auth_username"`
AuthPassword string `json:"auth_password"`
AuthClientId string `json:"auth_client_id" config:"secret"`
AuthUsername string `json:"auth_username" config:"secret"`
AuthPassword string `json:"auth_password" config:"secret"`

PermissionSearchUrl string `json:"permission_search_url"`
DeviceManagerUrl string `json:"device_manager_url"`
Expand Down

0 comments on commit 55abc8c

Please sign in to comment.