fixed incorrect minio example policy (#1571)
* fixed policy for minio mastodon bucket * fixed example to fit instructions
This commit is contained in:
parent
afe3b8f3f0
commit
d7d937847a
1 changed files with 17 additions and 11 deletions
|
@ -206,10 +206,16 @@ To do this, you need to set a custom policy (replace `mastodata` with the actual
|
|||
{
|
||||
"Effect": "Allow",
|
||||
"Principal": {
|
||||
"AWS": "*"
|
||||
"AWS": [
|
||||
"*"
|
||||
]
|
||||
},
|
||||
"Action": "s3:GetObject",
|
||||
"Resource": "arn:aws:s3:::mastodata/*"
|
||||
"Action": [
|
||||
"s3:GetObject"
|
||||
],
|
||||
"Resource": [
|
||||
"arn:aws:s3:::mastodata/*"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue