Skip to main content

Using Outreach with AWS S3

Chris Lloyd avatar
Written by Chris Lloyd
Updated over 5 months ago

If you're already using an S3 bucket to receive your Outreach content, you can give Four/Four access by following this process.

  1. Log in to your AWS Console and go to IAM Roles.

  2. Click "Create role."

  3. Select “Another AWS account” as the trusted entity.

  4. Enter our AWS account ID 886149543965

  5. Click Next to proceed.

  6. Click "Create policy" to open a new tab for the policy editor.

  7. Select the JSON tab and paste in the following policy, replacing YOUR_BUCKET_NAME with your S3 bucket name:

    {
    "Version": "2012-10-17",
    "Statement": [
    {
    "Effect": "Allow",
    "Action": [
    "s3:ListBucket"
    ],
    "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME"
    },
    {
    "Effect": "Allow",
    "Action": [
    "s3:GetObject"
    ],
    "Resource": "arn:aws:s3:::YOUR_BUCKET_NAME/*"
    }
    ]
    }

  8. Click Next , then name your policy (e.g. FourFourOutreachPolicy), and click Create policy.

  9. Go back to your role creation tab. Refresh the permissions list and search for your new policy name.

  10. Attach the policy to the role. Click Next.

  11. Enter a name for the role (for example: FourFourOutreachAccess ).

  12. Click "Create Role"

Now that your role has been created AWS will provide you the "Role ARN". Copy and paste this value into the Outreach configuration in Four/Four.

Did this answer your question?