Reputation: 1258
I want to create a Python Lambda function to take uploaded s3 images and create a thumbnail version of them.
I have permission problems where I cannot get access to my bucket. I understand that I need to create a bucket policy. I don't understand how I can make a policy which works for a lambda request performing the thumbnail process?
Upvotes: 2
Views: 3654
Reputation: 6515
It sounds like you want to do the following:
You'll need 3 different permissions to do that:
Upvotes: 5