Cerbos JavaScript SDK
    Preparing search index...

    Interface ResourcePolicy

    A policy defining rules for actions that can be performed on a given resource.

    interface ResourcePolicy {
        apiVersion?: string;
        description?: string;
        disabled?: boolean;
        metadata?: PolicyMetadata;
        resourcePolicy: ResourcePolicyBody;
        variables?: Record<string, string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    apiVersion?: string

    API version of the policy.

    description?: string

    Description of the policy.

    disabled?: boolean

    Whether the policy is ignored by the Cerbos engine.

    metadata?: PolicyMetadata

    Metadata about the policy.

    resourcePolicy: ResourcePolicyBody

    The policy body.

    variables?: Record<string, string>

    Variable expressions defined for the policy.

    Each variable is evaluated before any rule condition. A variable expression can contain anything that condition expression can have.

    Define variables within the policy body instead, provided the Cerbos policy decision point server is at least v0.29 (DerivedRolesBody.variables, PrincipalPolicyBody.variables, or ResourcePolicyBody.variables).