Update website/docs/language/settings/backends/s3.html.md

This commit is contained in:
moajo 2021-08-12 15:17:04 +09:00
parent 1206298487
commit b3e1a40499
1 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@ the target backend bucket:
* `s3:ListBucket` on `arn:aws:s3:::mybucket`
* `s3:GetObject` on `arn:aws:s3:::mybucket/path/to/my/key`
* `s3:PutObject` on `arn:aws:s3:::mybucket/path/to/my/key`
* `s3:DeleteObject` on `arn:aws:s3:::mybucket/path/to/my/key`
This is seen in the following AWS IAM Statement:
@ -61,7 +62,7 @@ This is seen in the following AWS IAM Statement:
},
{
"Effect": "Allow",
"Action": ["s3:GetObject", "s3:PutObject"],
"Action": ["s3:GetObject", "s3:PutObject", "s3:DeleteObject"],
"Resource": "arn:aws:s3:::mybucket/path/to/my/key"
}
]