To bring S3 data into Coho, a developer needs to provide us read-only permissions to your S3 bucket, by following these steps:
Create a bucket policy on your S3 bucket that you want to share. The policy should contain the following statement:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowCrossAccountAccess",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::268320466248:root"
},
"Action": [
"s3:ListBucket",
"s3:GetObject",
"s3:GetBucketLocation"
],
"Resource": [
"arn:aws:s3:::<bucket-name>/*",
"arn:aws:s3:::<bucket-name>"
]
}
]
}Contact support, and provide the bucket name.
β
β