Skip to content

Commit

Permalink
updated docs (#11840)
Browse files Browse the repository at this point in the history
  • Loading branch information
andriikorotkov authored Apr 15, 2022
1 parent efb969c commit 4ac5d3c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/integrations/destinations/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,23 @@ Under the hood, an Airbyte data stream in Json schema is first converted to an A
* If you will use instance profile authentication, make sure the role has permission to read/write on the bucket.
* The easiest way to verify if Airbyte is able to connect to your S3 bucket is via the check connection tool in the UI.

In order for everything to work correctly, it is also necessary that the user whose "S3 Key Id" and "S3 Access Key" are used have access to both the bucket and its contents. Policies to use:
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "s3:*",
"Resource": [
"arn:aws:s3:::YOUR_BUCKET_NAME/*",
"arn:aws:s3:::YOUR_BUCKET_NAME"
]
}
]
}
```

## CHANGELOG

| Version | Date | Pull Request | Subject |
Expand Down

0 comments on commit 4ac5d3c

Please sign in to comment.