How to set up my AWS S3 bucket to receive the files?

This steps will allow us access the bucket that you created and will give us permission to copy content directly to your bucket.

To receive content directly to your AWS S3 Bucket

  1. Create a bucket in your account in the region ap-southeast-1

  2. Add the following policy to the bucket.

Leave the ACL as recommended as in this image.

"Resource" is your bucket name

{
    "Version": "2012-10-17",
    "Id": "allritespolicy",
    "Statement": [
        {
            "Sid": "allritesaccess",
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::363464534806:user/allritesdelivery"
            },
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::yourbucketname",
                "arn:aws:s3:::yourbucketname/*"
            ]
        }
    ]
}

3. Send us the bucket name.

4. To test the files, you can make the bucket public by going to the Permissions tab and unblock the public access..

Or, you can create a presigned url to test the video playback without making the bucket publicly accessible.

Last updated

Was this helpful?