auth/opa/user/user1.rego

8 lines
82 B
Plaintext
Raw Normal View History

package user1
default allow := false
allow := true {
input.user == "jean"
}