I have made a policy for users who connect through Cloudberry.
I would like to apply this same policy for Mac-users who connect through 3hub.
Is there some incompatibility between the two, because I can't manage to connect to a bucket/folder like I can with cloudberry?
I post an example of a policy that I use with Cloudberry:
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListBucketVersions"
],
"Resource": "arn:aws:s3:::bucketxyz",
"Condition": {
"StringLike": {
"s3:prefix": "projectfolder_abc/*"
}
}
},
{
"Effect": "Allow",
"Action": "s3:*" ,
"Resource": [
"arn:aws:s3:::bucketxyz/projectfolder_abc/*"
],
"Condition": {}
}
]
}