Replies: 1 comment 1 reply
-
this means "allow Lambda to call SES on the Queue" and (second line) "allow Lambda to call SES on the Function", which doesn't mean anything valid. The "Resource" should be a SES resource. It's the target of the permission. The source of the permission will always be the Lambda functions (that's how serverless.yml works). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Hi,
I want use queue construct to build a service which send an email when a message is pushed on queue.
For that, my worker use ses service. But when i try basically, in logs, i can see an error indicate the lambda doesn't have the require permissions for that.
If i add or update manually the role to manage ses:* for every resources (*), it's ok.
But, if i update serverless.yml like documentation about permissions, i don't have the expected result.
How to Reproduce
this my serverless.yml :
Additional Information
Maybe it will be pretty cool to expose also queue worker arn on build's result ?
Beta Was this translation helpful? Give feedback.
All reactions