minio 设置访问权限

参考:https://blog.csdn.net/m0_37615458/article/details/127203480

设置访问特定桶

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetBucketLocation",
                "s3:GetObject",
                "s3:ListBucket",
                "s3:PutObject"
            ],
            "Resource": [
                "arn:aws:s3:::uhvdatafiles/*"
            ]
        }
    ]
}
posted @ 2023-04-19 09:32  unicoe  阅读(562)  评论(0编辑  收藏  举报