> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tamarind.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# S3 Integration

> Have job results automatically uploaded to your S3 bucket

Tamarind can automatically upload all job results for each member of your organization directly to your own AWS S3 bucket. Results are saved to the path `user@email.com/JobName/file.txt`.

You must be an **admin** of your organization to configure this integration.

Follow the steps below to grant Tamarind access to your S3 bucket using a bucket policy.

***

## S3 Bucket Setup

### 1. Create or Identify Your Bucket

Make or identify the S3 bucket you'd like Tamarind to upload to. We recommend using a dedicated bucket for your results.

### 2. Open the Bucket Policy Editor

Navigate to your S3 bucket in the AWS Console, then go to **Permissions** → **Bucket Policy**.

### 3. Add the Bucket Policy

Add the following bucket policy, replacing `YOUR-BUCKET-NAME` with your actual bucket name:

```json theme={null}
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowTamarindAccess",
      "Effect": "Allow",
      "Principal": {
        "AWS": "arn:aws:iam::612550881260:role/SSM"
      },
      "Action": [
        "s3:GetObject",
        "s3:PutObject",
        "s3:ListBucket",
        "s3:DeleteObject"
      ],
      "Resource": [
        "arn:aws:s3:::YOUR-BUCKET-NAME",
        "arn:aws:s3:::YOUR-BUCKET-NAME/*"
      ]
    }
  ]
}
```

### 4. Save the Bucket Policy

Click **Save changes** in the AWS Console to apply the policy.

### 5. Configure the Integration in Tamarind

1. Navigate to [Organization Settings](https://app.tamarind.bio/org-settings) and go to the **S3 Integration** section.
2. Enter your bucket name.
3. Check **Result uploading enabled** to activate automatic uploads.
4. Click **Save**.

Once saved, all job results for members of your organization will be automatically uploaded to your S3 bucket.

If you have any questions about the S3 integration, email us at `info@tamarind.bio`.
