我在wordpress中遇到此錯誤:Error retrieving a list of your S3 buckets from AWS:Access Denied
。我爲IAM用戶編寫了策略。我不知道我在做什麼錯。請幫幫我。從AWS中檢索您的S3存儲桶列表時出錯:拒絕訪問
我的IAM政策是在這裏:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmtxxxxxxxxxxx",
"Effect": "Allow",
"Action": [
"s3:GetBucketLocation",
"s3:ListBucket",
"s3:ListBucketMultipartUploads"
],
"Resource": [
"arn:aws:s3:::bucketname/*"
]
}
]
}
thnak你。其實我忘記給用戶一個管理訪問權限。現在一切正常。 – Kamal 2014-10-09 12:00:11