Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mention step to add the correct permissions to the S3 bucket in Readme #2

Open
hkapasi opened this issue Jun 17, 2022 · 1 comment
Open

Comments

@hkapasi
Copy link

hkapasi commented Jun 17, 2022

I was facing the below error even after following all steps:
StatusMessage": "ClientError: Disk validation failed [We do not have access to the given resource. Reason 403 Forbidden]",

To solve the I added the below permissions to the S3 bucket

{
"Version":"2012-10-17",
"Statement":[{
"Sid":"PublicReadGetObject",
"Effect":"Allow",
"Principal": "",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::example-bucket/
"
]
}
]
}

So, you could add this as well to the Readme procedure, would help the future readers.

Best Regards.

@mazzahaker
Copy link

Hi everyone! I have the same problem. Have you found the solution?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants