- setup
- create IAM group
- add simple, custom policy below
- do not add any other policies to group
- create IAM user and put in above IAM group
- create and download key and secret for user
- create bucket "mybucket01" in S3
- you don't have to touch perms of bucket itself
- client
- install s3fox addon for Firefox from www.s3fox.net
- older versions FAIL! get it only at www.s3fox.net
- open s3fox addon
- Firefox -> Tools -> S3 Organizer
- add only one user to "Manage Accounts" using user key and secret
- in right-hand window of s3fox add "/mybucket01" NOT "/"
- "/" will give you "Access Denied"
- because user does not have perms to list root buckets, only itself
{ "Statement": [ { "Effect": "Allow", "Action": "s3:ListAllMyBuckets", "Resource": "arn:aws:s3:::mybucket01" }, { "Effect": "Allow", "Action": "s3:*", "Resource": [ "arn:aws:s3:::mybucket01", "arn:aws:s3:::mybucket01/*" ] } ] }
No comments:
Post a Comment
Note: only a member of this blog may post a comment.