mirror of
https://github.com/pgsty/minio.git
synced 2026-07-17 02:21:08 +03:00
9 lines
111 B
Rego
9 lines
111 B
Rego
package httpapi.authz
|
|
|
|
import input as http_api
|
|
|
|
allow {
|
|
input.action = "s3:PutObject"
|
|
input.owner = false
|
|
}
|