-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Authorized Paths in Zappa_settings #1424
Comments
Is there a way to do this from the AWS side? My experience is that the authorizer is per-API Gateway endpoint, and the way There's an issue to add support for the |
It is indeed all or none, however, the intent of this request is there are APIs that you would want to expose without authorization such as a login endpoint. It is also unnecessary to create another API gateway for publicly available apis or endpoints. unless there is a workaround for such requirement please do let me know |
I just don't know how you'd go about implementing this within Zappa. One other method is to manually manage base paths in a Custom Domain Name to point to different lambdas, or even use different hostnames for different lambdas, but that gets messier than I think we'd like Zappa's scope to creep. Within one Zappa app/deployment, there's not an internal way I know of to make some routes hit the Authorizer and some bypass. Related: #1423 |
So how does Chalice manage to do this? (letting you specify an authorizer for each method) |
Any update on this? I think serverless does that too, it is absolutely possible using AWS Portal. Is it something of a shortcoming of Zappa? |
There are scenarios where we will implement or utilize an authorizer, however there are times when we would want certain paths to be accessed without any authorization such as a login endpoint
The text was updated successfully, but these errors were encountered: