UNPKG

@infosys_ltd/openfga-plugin-backstage

Version:

This plugin wraps around the Backstage Permission Framework and uses the OPENFGA client to evaluate policies.

20 lines (19 loc) 352 B
/** * This file defines the configuration schema for the OpenFGA plugin. */ export interface Config { openfga?: { /** * @visibility frontend */ baseUrl: string; /** * @visibility frontend */ storeId: string; /** * @visibility frontend */ authorizationModelId: string; }; }