Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(webhook): Enable authorizer assignment to webhook (#4000)
We want to add a lambda authenticator to webhook API endpoint to restrict requests by source IP address. To achieve this, the following two options are possible: 1. add attributes to pass authorizer resource information to this module, 2. or simply ignores changes related to authorizer of `aws_apigatewayv2_route` resource, However, 1. requires all informations to create `aws_apigatewayv2_authorizer` and `aws_lambda_permission`, this is little bit need consideration. Option 2. is, of cource, needs resouce update by hand, however, the very simple to achieve by ignoring attribute changes. This PR aims to implement option 2. --------- Co-authored-by: Niek Palm <[email protected]>
- Loading branch information