Resource policies
This documentation is for a previous version of Cerbos. Choose 0.39.0 from the version picker at the top right or navigate to https://docs.cerbos.dev for the latest version. |
Resource policies define rules for actions that can be performed on a given resource. A resource is an application-specific concept that applies to anything that requires access rules. For example, in an HR application, a resource can be as coarse-grained as a full employee record or as fine-grained as a single field in the record.
Multiple rules can be defined for the same action on a resource for different roles and/or with different conditions. If more than one rule matches a given input, then a rule specifying EFFECT_DENY
will take precedence over one specifying EFFECT_ALLOW
.
---
apiVersion: api.cerbos.dev/v1
resourcePolicy:
resource: "album:object" (1)
version: "default" (2)
scope: "acme.corp" (3)
importDerivedRoles:
- apatr_common_roles (4)
variables:
import: (5)
- apatr_common_variables
local: (6)
is_corporate_network: |-
P.attr.ip_address.inIPAddrRange("10.20.0.0/16")
rules:
- actions: ['*'] (7)
effect: EFFECT_ALLOW
derivedRoles:
- owner (8)
- actions: ['view']
effect: EFFECT_ALLOW
roles:
- user (9)
condition:
match:
expr: request.resource.attr.public == true
output: (10)
expr: |-
"view_allowed:%s".format([request.principal.id])
- name: moderator_rule (11)
actions: ['view', 'delete']
effect: EFFECT_ALLOW
condition:
match:
expr: V.is_corporate_network
derivedRoles:
- abuse_moderator
schemas: (12)
principalSchema:
ref: cerbos:///principal.json (13)
resourceSchema:
ref: cerbos:///album/object.json (14)
1 | Kind of resource to which this policy applies. |
2 | Version of this policy. Policies are uniquely identified by the resource name and version pair. You can have multiple policy versions for the same resource (e.g. production vs. staging). The version value default is special as it is the default fallback when no version is specified in the request. |
3 | Optional scope for this policy. |
4 | Import a set of derived roles (optional). |
5 | Variable definitions to import (optional). |
6 | Local variable definitions (optional). |
7 | Actions can contain wildcards. Wildcards honour the : delimiter. E.g. a:*:d would match a:x:d but not a:x . |
8 | This rule applies to a derived role. |
9 | Rules can also refer directly to static roles. The special value * can be used to disregard roles when evaluating the rule. |
10 | Optional output for the rule. You can define a single expression per rule which will be evaluated and output in the response. An output expression can contain anything that condition expressions can have. |
11 | Optional name for the rule. |
12 | Optional section for defining schemas that apply to this resource kind. |
13 | Optional schema for validating the principal attributes. |
14 | Optional schema for validating the resource attributes. |