diff --git a/charts/soteria/values.yaml b/charts/soteria/values.yaml index 60ef7ec..a64497c 100644 --- a/charts/soteria/values.yaml +++ b/charts/soteria/values.yaml @@ -50,6 +50,7 @@ config: tracer: enabled: false + vendors: snapp: company: "snapp" diff --git a/config.example.yml b/config.example.yml index 01f90f2..7e23900 100644 --- a/config.example.yml +++ b/config.example.yml @@ -6,6 +6,10 @@ http_port: 9999 logger: level: debug stacktrace: true +black_list_user_logging: + iss: 0 + user_ids: [] + # Validator is the upstream backend service that can validate the tokens: validator: url: http://validator-lb diff --git a/internal/config/default.go b/internal/config/default.go index 3b8aeb6..111cd2e 100644 --- a/internal/config/default.go +++ b/internal/config/default.go @@ -37,6 +37,10 @@ func Default() Config { URL: "http://validator-lb", Timeout: 5 * time.Second, }, + BlackListUserLogging: BlackListUserLogging{ + Iss: 0, + UserIDs: []int{}, + }, } }