Document the IAM permissions

This commit is contained in:
Jacob Parker 2019-07-08 16:59:04 +01:00
parent b4c666fbcf
commit 1fff48568f
1 changed files with 18 additions and 1 deletions

View File

@ -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