Reputation: 347
Can someone explain me why this policy doesn't work? What I want: full S3 control for the IAM user but limited to two buckets, defined by their ARNs. I always get Access Denied when trying to upload with AWS SDK from my server. Thank you
Upvotes: 0
Views: 117
Reputation: 3387
There are some possibilities here, it's hard to tell without seeing the full setup.
As an aside, you should be able to combine these policies by combining resources: Resource: ["arn_1", "arn_2"]
Upvotes: 2