I'm writing an app where I have a set of users, and each user will have a number of files associated with them in a 'directory' within an S3 bucket. Users will be authenticating using Amazon's STS, getting temporary security credentials that should allow them to access resources they own while not allowing them to access resources they do not (think: "home" directories).
Assuming the user already exists in the system (and is authenticated), and their file bucket is created (without a specified policy or ACL) using the naming scheme:
<< my app's bucket>>/<< user's identifier >>/
During a request for a user accessing file, we grant temporary security credentials as follows using boto:
get_federation_token(<< user's identifier >>, duration,policy=user_policy)
where user_policy is:
user_policy = (r'{"Statement": [{"Effect":"Allow",
"Action":[
"s3:PutObject",
"s3:GetObject",
"s3:GetObjectVersion",
"s3:DeleteObject",
"s3:DeleteObjectVersion"],
"Resource":"arn:aws:s3:::/%s/*"}]}' % (<< user's identifier >>))
I had thought I understood policies, but apparently I'm missing something. Using the above scheme, I'm able to get/put resources under the user's directory, but also the directories/resources belonging to other users. For the life of me, I can't get access properly segregated. I've played with bucket policies as well, but that didn't bear fruit.
Any direction would be appreciated.
Note: I'm stuck using STS, as we'll likely have too many users to create/use IAM users.