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
Hello, we are using Chalice to write our API, and here is some features we thing they will be useful to everyone using chalice.
When writing a built-in authorizer, sometimes we want to allow all routes after a successful token verification. Something like routes=['*'] would be very useful,
chalice local should use the envs set in config.json
Enable authorizers in local mode (very useful when writing built-in authorizers)
A way to add lambda functions that are not exposed to the API
Those are the main features we are missing in chalice(maybe some are already implemented and we are not aware).
Thanks for the amazing tool.
The text was updated successfully, but these errors were encountered:
When writing a built-in authorizer, sometimes we want to allow all routes after a successful token verification. Something like routes=['*'] would be very useful,
I would expect that to work already and would consider it a bug that it doesn't. Interestingly enough this does work: return AuthResponse(routes=[AuthRoute('*', ['*'])], principal_id='user')
Hello, we are using Chalice to write our API, and here is some features we thing they will be useful to everyone using chalice.
routes=['*']
would be very useful,chalice local
should use the envs set inconfig.json
Those are the main features we are missing in chalice(maybe some are already implemented and we are not aware).
Thanks for the amazing tool.
The text was updated successfully, but these errors were encountered: