Kurt Peek
Kurt Peek

Reputation: 57611

In Amazon S3, other user doesn't see the same buckets

I've set up a couple of S3 buckets, which I can see if I navigate to Storage > S3 in the console:

enter image description here

I've also added permissions to another account, e.g. for the lucy-dev2 bucket:

enter image description here

However, this user, when he navigates to Storage > S3 in his console, doesn't see the same 'directory list' of buckets.

Ultimately, we would like all users to see the same buckets. How could we set this up?

(I've perused https://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example2.html, but it seems this should be possible without using the CLI?)

Upvotes: 0

Views: 1371

Answers (1)

jarmod
jarmod

Reputation: 78803

The S3 console does not show you buckets that you have access to (nor does aws s3 ls). It shows you buckets in the AWS account associated with your login credentials (assuming that you have permission to list buckets).

The user in the second account can, however, access these buckets, assuming the correct permissions:

Upvotes: 2

Related Questions