Skip to main content

Connecting to Amazon S3 Connection

Using IAM role and External ID (most secure)

For more information on External ID, please read How to use an external ID when granting access to your AWS resources to a third party.

Step 1. Begin S3 bucket configuration.

image-20240426-035830.png
  1. Enter Destination Name.

  2. Enter Description (optional).

  3. Select S3 Bucket from the Destination Type dropdown.

  4. Enter your S3 Bucket Name.

  5. Check Require External ID.

image-20240426-053853.png

Step 2. Create IAM policy.

  1. Open your Amazon IAM console.

  2. Go to Policies, then click Create Policy.

image-20240426-042407.png
  1. Select JSON tab.

image-20240426-042311.png
  1. Copy the policy from the Policy field.

image-20240426-055123.png
  1. And paste it into the Policy editor.

image-20240426-055640.png
  1. Click Next.

  2. Enter Policy Name, for example Sequentum_S3_Access.

image-20240426-062253.png
  1. Finally, click Create policy.

Step 3. Create IAM role.

  1. Find External ID and make a note of it. You will need it to create an IAM role in AWS. Please note that External ID is auto generated and you will not be able to change it.

image-20240426-073911.png
  1. Open your Amazon IAM console.

  2. Go to Roles, then click Create role.

image-20240426-063544.png
  1. On the Select truted entity page, select Custom trust policy.

image-20240426-063815.png
  1. Copy the provided Custom trust policy from the Role Custom Trust Policy field.

image-20240426-073949.png
  1. Paste the copied text into the Custom Trust Policy editor.

image-20240426-070555.png
  1. Click Next.

  2. Find and select Sequentum_S3_Access policy you created earlier in Step 2.

image-20240426-070910.png
  1. Click Next.

  2. Enter Role Name, for example Sequentum_S3_Access_Role.

image-20240426-071347.png
  1. Finally, click Create role.

  2. Click the Sequentum_S3_Access_Role role you created.

image-20240426-072100.png
  1. On the Summary page for the role, find the ARN value and copy it.

image-20240426-072408.png
  1. Paste it into the Role ARN field.

image-20240426-073133.png

Step 4. Finish S3 bucket configuration.

  1. Enter Folder (optional).

image-20240426-072815.png
  1. Click Test Connection.

  2. Click Save.

Using Bucket Policy (less secure)

Simple Setup:

Copy and paste the generated policy into the “Bucket Policy” section of your S3 Bucket.

Advanced Setup:

If you have an existing Policy in your bucket you need to add a new Statement to the policy:

CODE
{
			"Sid": "AllowSequentumGetObjects",
			"Effect": "Allow",
			"Principal": {
				"AWS": "arn:aws:iam::280772890673:user/sequentum"
			},
			"Action": [
				"s3:PutObjectAcl",
				"s3:PutObject"
			],
			"Resource": "YOUR BUCKET ARN"
}

Specifically, make sure the policy grants the Sequentum ARN permission to run s3:PutObject and s3:PutObjectAcl actions.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.