Files
physical-boot/README.md
2024-11-19 11:50:12 +08:00

25 lines
453 B
Markdown

# minio bucket 权限配置
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": {
"AWS": [
"*"
]
},
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::physical/*"
]
}
]
}
```