S3 Storage upload and download error

0

Since last saturday (March 4th) we are not able to upload nor download on our S3 Storage If I try to access to a file we have following error message : *AccessDeniedAccess Denied ................................................... * If I try to upload a file NoSuchKeyThe specified key does not exist.uploads ............................................ S3 Block Public Access is disabled Any Idea to help us ?

2개 답변
0

What permissions do you have on the user you are using to upload and download? I do uploads all the time and mine works fine using a python script.

Here's my JSON for the policy of the user I use to do this. Maybe this will help. You may not need ListBucket or ListAllMyBuckets. I need them, though, because my script uses them.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:PutObject",
                "s3:GetObjectAcl",
                "s3:GetObject",
                "s3:ListAllMyBuckets",
                "s3:GetObjectAttributes",
                "s3:ListBucket",
                "s3:PutObjectAcl"
            ],
            "Resource": "*"
        }
    ]
}
답변함 일 년 전
0

What client are you using to access S3, and how is it getting AWS credentials? Are the credentials still current?

전문가
답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠