Skip to main content
Integrating with AWS S3

How to get data from AWS S3 into Coho

Updated over a week ago

To bring S3 data into Coho, a developer needs to provide us read-only permissions to your S3 bucket, by following these steps:

  1. 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>"
    ]
    }
    ]
    }
  2. Contact support, and provide the bucket name.
    โ€‹
    โ€‹

Did this answer your question?