I have a user with readwrite policy
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:*"
],
"Resource": [
"arn:aws:s3:::*"
]
}
]
}
Then I created a bucket policy
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Principal": {
"AWS": [
"*"
]
},
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::images/*"
]
}
]
}
But user still can getObjects from this bucket. Why? How to deny read/delete actions for bucket. And is it possible to deny it to minioadmin?