Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
If I understand correctly, here is a
similar
case
No it is not possible, we do something similar to what AWS does, user is not tied to buckets . Buckets exist for all users you just selectively give them access.
let's say we have our backet01 bucket
Create a user
mc admin user add minio <user_name> <password>
Add a policy
mc admin policy add minio <policy_name> policy.json
mc admin policy set minio <policy_name> user=<user_name>
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket"
],
"Resource": [
"arn:aws:s3:::backet01"
]
},
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::backet01/*"
]
}
]
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question