Invoke Lambda policy not supported
Open
enhancement
- Dominant language
- Python
- Stars
- 11.1k
- Forks
- 1k
- Avg merge
- 1d 22h
- Merged PRs (30d)
- 2
Description
My API Gateway function calls another Lambda function. While auto-generating policy document during `chalice deploy`, I get:
> Unsupported service: lambda
and the required policy is not added.
Relevant policy that should be added is:
```
{
"Version": "2012-10-17",
"Statement": [
...
{
"Effect": "Allow",
"Action": [
"lambda:InvokeFunction"
],
"Resource": [
"*"
]
}
]
}
```
Thanks.
Contributor guide
Assessment
This issue has not been assessed yet.