-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Invalid Authorizer identifier specified #304
Comments
Update: Apparently this is also fixable by just calling |
Which version of chalice is this under? |
It happened a few times under 0.8.0, and once under 0.8.1. |
I am currently seeing this under 0.10.0 as well. I think it is specific to
I can also confirm after running |
This should be fixed now with this merged: #381 Feel free to open a new issue if you are still having issues. |
I'm getting the following error when doing
chalice deploy
:An error occurred (BadRequestException) when calling the CreateDeployment operation: Invalid Authorizer identifier specified
Basically, I have an endpoint configured with a CognitoUserPool:
When I look at the API Gateway console, it does create the API endpoint correctly, but for that resource's
Method Request
, underAuthorization
, it showsInvalid
- so I manually change it toMyUserPool
(by selecting the appropriate value from the dropdown menu) and deploy the changes (from the AWS console).I should note that after that, everything works properly (the next
chalice deploy
works, and the API authentication works), it's just that the initial deploy fails.I also made sure the ARN and user pool name are correct, and that the user pool is configured properly (with App ID, etc.)
The text was updated successfully, but these errors were encountered: