You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please describe your use case / problem.
We would benefit from AuthService being tunable per mapping as many folks will have both authenticated and unauthenticated endpoints behind the same gateway.
The typical example is that you have an API that both authenticated and unauthenticated endpoints.
Describe the solution you'd like
Per mapping boolean, eg.
Describe alternatives you've considered
Alternative and the solution i've heard others doing right now is keeping explicit whitelists in the authservice.
This has multiple downsides
Multiple places for endpoint configuration
AuthService on critical path for things that don't require it
Performance hit of extra hop
Theres also a big downside of returning custom 404's for dynamic stuff if you use whitelists that have to match exactly.
The text was updated successfully, but these errors were encountered:
Please describe your use case / problem.
We would benefit from
AuthService
being tunable per mapping as many folks will have both authenticated and unauthenticated endpoints behind the same gateway.The typical example is that you have an API that both authenticated and unauthenticated endpoints.
Describe the solution you'd like
Per mapping boolean, eg.
Describe alternatives you've considered
Alternative and the solution i've heard others doing right now is keeping explicit whitelists in the authservice.
This has multiple downsides
Theres also a big downside of returning custom 404's for dynamic stuff if you use whitelists that have to match exactly.
The text was updated successfully, but these errors were encountered: