Access Denied - When running "aws s3api list-buckets" from AWS CLI

0

Bucket policy:

{ "Version": "2012-10-17", "Statement": [ { "Sid": "statement1", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::$AccountID:user/$username" }, "Action": [ "s3:GetBucketLocation", "s3:ListBucket" ], "Resource": "arn:aws:s3:::$BucketName" }, { "Sid": "statement2", "Effect": "Allow", "Principal": { "AWS": "arn:aws:iam::$AccountID:user/$username" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::$BucketName/*" } ] }

From AWS CLI, got the "Access Denied" error when trying the List Bucket command as the above $username:

C:>aws s3api list-buckets --profile $username

An error occurred (AccessDenied) when calling the ListBuckets operation: Access Denied

However, the same command above with the "Default" profile works fine:

C:>aws s3api list-buckets (works fine)

The AWS CLI installed is the latest version as of today, June 9 2023.

已提问 1 年前388 查看次数
1 回答
2

The bucket may allow the $Username to list buckets, but what is the IAM permissions for the actual $username itself? Both the IAM permissions for the entity AND the resource policy for the bucket must both allow the action, otherwise you may have the IAM policy associated with the $username causing the deny.

profile pictureAWS
专家
pechung
已回答 1 年前
profile picture
专家
已审核 1 年前
  • The $username has the following IAM policy/permission defined:

    { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": "s3:ListBucket", "Resource": "arn:aws:s3:::$BucketName" } ] }

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则