Cerbos JavaScript SDK
    Preparing search index...

    Interface ExportVariables

    A set of exported variables to be reused in other policies.

    Requires the Cerbos policy decision point server to be at least v0.29.

    interface ExportVariables {
        apiVersion?: string;
        description?: string;
        disabled?: boolean;
        exportVariables: ExportVariablesBody;
        metadata?: PolicyMetadata;
        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.

    exportVariables: ExportVariablesBody

    A set of exported variables.

    metadata?: PolicyMetadata

    Metadata about the policy.

    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).