-
Notifications
You must be signed in to change notification settings - Fork 455
Open
Labels
S-confirmingStatus: Awaiting confirmation for a resolved issueStatus: Awaiting confirmation for a resolved issue
Description
Describe the bug
It is not possible to create a key with your own policy. The following policy is used:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowWriteOnlyAccess",
"Effect": "Allow",
"Action": [
"s3:PutObject"
],
"Resource": "arn:aws:s3:::backup/*"
},
{
"Sid": "DenyReadAndDelete",
"Effect": "Deny",
"Action": [
"s3:GetObject",
"s3:ListBucket",
"s3:ListBucketVersions",
"s3:DeleteObject"
],
"Resource": [
"arn:aws:s3:::backup",
"arn:aws:s3:::backup/*"
]
}
]
}
To Reproduce
Create a new key with the policy
Expected behavior
Successful created key
Additional context
RustFS Version: alpha 61
Metadata
Metadata
Assignees
Labels
S-confirmingStatus: Awaiting confirmation for a resolved issueStatus: Awaiting confirmation for a resolved issue