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.
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.