Update website/docs/language/settings/backends/s3.html.md
This commit is contained in:
parent
1206298487
commit
b3e1a40499
|
@ -47,6 +47,7 @@ the target backend bucket:
|
||||||
* `s3:ListBucket` on `arn:aws:s3:::mybucket`
|
* `s3:ListBucket` on `arn:aws:s3:::mybucket`
|
||||||
* `s3:GetObject` on `arn:aws:s3:::mybucket/path/to/my/key`
|
* `s3:GetObject` on `arn:aws:s3:::mybucket/path/to/my/key`
|
||||||
* `s3:PutObject` 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:
|
This is seen in the following AWS IAM Statement:
|
||||||
|
|
||||||
|
@ -61,7 +62,7 @@ This is seen in the following AWS IAM Statement:
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Effect": "Allow",
|
"Effect": "Allow",
|
||||||
"Action": ["s3:GetObject", "s3:PutObject"],
|
"Action": ["s3:GetObject", "s3:PutObject", "s3:DeleteObject"],
|
||||||
"Resource": "arn:aws:s3:::mybucket/path/to/my/key"
|
"Resource": "arn:aws:s3:::mybucket/path/to/my/key"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue