Skip to content

aserto-demo/mycars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mycars

MyCars demo

default

default allow = false

mycars.get.rego

allow {
    input.method == "GET"
    input.user == "kaia@acmecorp.com"
}

mycars.car.get.rego

allow {
    i = data.data.identities[input.user]
    u = data.data.users[i]
    u.attr.enabled == "True"
    u.attr.department == "Sales Engagement Management"
}