Commit 1fff4856 authored by Jacob Parker's avatar Jacob Parker
Browse files

Document the IAM permissions

parent b4c666fb
Loading
Loading
Loading
Loading
+18 −1
Original line number Diff line number Diff line
@@ -217,7 +217,24 @@ Once you've done that, your config section should look like this:

Authentication is handled automatically by the client. Check
[Amazon's documentation](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html)
for more information.
for more information. You will need to grant your role these permissions to
your bucket:

```json
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "s3:GetObject",
                "s3:PutObject"
            ],
            "Effect": "Allow",
            "Resource": "arn:aws:s3:::your-bucket-name-goes-here/*"
        }
    ]
}
```

## Author