Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@ Serverless plugin supporting AWS_IAM authorizer on API Gateway method

Adds the ability to configure AWS_IAM for your API Gateway endpoints, and "Invoke with caller credentials"

# Note

Since serverless version 1.14.0 it's been possible to add `authorizer: aws_iam` as a part of the http event configuration. Example:

```yml
companies:
handler: src/companies.main
events:
- http:
path: companies
method: get
authorizer: aws_iam

```

## Usage
register plugin:
```YAML
Expand Down