This project is an Open Policy Agent (OPA) wrapper for the Backstage Permission Framework.
-
Instead of coding policies directly into your Backstage instance with TypeScript, create, edit and manage your policies with OPA!
-
Manage your policies in a more flexible way, you can use OPA's Rego language to write your policies.
-
No need to redeploy your Backstage instance to update policies, simply update your OPA policies and you are good to go!
-
Enable teams to manage their own policies, without needing to know TypeScript or the Backstage codebase!
This plugin does not require the
backstage-opa-backend
plugin!
- You have a Backstage instance set up and running.
- You have deployed OPA, kindly see how to do that here.
- This plugin also requires and assumes that you have at least setup the permission framework (without any policies) as outlined here Backstage Permissions Docs as it of course relies on the permissions framework to be there and set up.
This plugin wraps around the Backstage Permission Framework and uses the OPA client to evaluate policies. It will send a request to OPA with the permission and identity information, OPA will then evaluate the policy and return a decision, which is then passed back to the Permission Framework.
- Permissions are created in the plugin in which they need to be enforced.
- The plugin will send a request to the Permission Framework backend with the permission and identity information.
- The Permission Framework backend will then forward the request to OPA with the permission and identity information.
- OPA will evaluate the the information against the policy and return a decision.
yarn add --cwd packages/backend @parsifal-m/plugin-permission-backend-module-opa-wrapper
Make the following changes to the packages/backend/src/index.ts
file in your Backstage project.
import { createBackend } from '@backstage/backend-defaults';
const backend = createBackend();
backend.add(import('@backstage/plugin-app-backend/alpha'));
backend.add(import('@backstage/plugin-auth-backend'));
// ..... other plugins
+ backend.add(import('@parsifal-m/plugin-permission-backend-module-opa-wrapper'));
The policy that will be used can be found in plugins/permission-backend-module-opa-wrapper/src/policy.ts
. It will simply forward all permission requests to OPA.
The OPA client requires configuration to connect to the OPA server. You need to provide a baseUrl
and an entrypoint
for the OPA server in your Backstage app-config.yaml file:
opaClient:
baseUrl: 'http://localhost:8181'
policies:
permissions: # Permission wrapper plugin
entrypoint: 'rbac_policy/decision'
The baseUrl
is the URL of the OPA server, and the entrypoint
is the entrypoint of the policy you want to evaluate.
It is also possible to provide an entrypoint to the policyEvaluator
function, this will override the entrypoint provided in the config. This allows for more flexibility in policy evaluation (if you need it).
If you do not override the entrypoint, the entrypoint provided in the config will be used.
Two basic fallback policies are provided in the plugin, allow
and deny
. You can set the default policy in the app-config.yaml
file with the policyFallback
key:
opaClient:
baseUrl: 'http://localhost:8181'
policies:
permissions: # Permission wrapper plugin
entrypoint: 'rbac_policy/decision'
policyFallback: 'deny'
The previous example would return a DENY
decision to any request if the OPA server is not reachable.
If the value is set to any value other than allow
or deny
, the wrapper is allowed to throw an error if the OPA server is not reachable. The values are case-insensitive.
An example policy in OPA might look like this, keep in mind you could also use bundles to manage your policies and keep the conditions
object in a data.json
file.
We use entrypoints to specify which rule to evaluate, the plugin is checking for a 'result' key in the OPA response, this means you do not have to use decision
as I have below, you can use any key you want.
package backstage_policy
import future.keywords.if
# Helper method for constructing a conditional decision
CONDITIONAL(plugin_id, resource_type, conditions) := conditional_decision if {
conditional_decision := {
"result": "CONDITIONAL",
"pluginId": plugin_id,
"resourceType": resource_type,
"conditions": conditions,
}
}
default decision := {"result": "DENY"}
permission := input.permission.name
claims := input.identity.claims
decision := {"result": "ALLOW"} if {
permission == "catalog.entity.read"
}
decision := CONDITIONAL("catalog", "catalog-entity", {"anyOf": [{
"resourceType": "catalog-entity",
"rule": "IS_ENTITY_OWNER",
"params": {"claims": claims},
}]}) if {
permission == "catalog.entity.delete"
}
decision := CONDITIONAL("catalog", "catalog-entity", {"anyOf": [{
"resourceType": "catalog-entity",
"rule": "IS_ENTITY_KIND",
"params": {"kinds": ["Component"]},
}]}) if {
permission == "catalog.entity.read"
}
The input sent from Backstage looks like this:
export type PolicyEvaluationInput = {
permission: {
type: string;
};
identity?: {
user: string | undefined;
claims: string[];
};
};
It will then return either just an allow decision or both an allow decision and a conditions object if the rule is conditional.
I am happy to accept contributions and suggestions for this plugin. Please fork the repository and open a PR with your changes. If you have any questions, please feel free to reach out to me on Mastodon
- PlaTT Policy Template contains policy templates that will work with the plugin-permission-backend-module-opa-wrapper plugin!
This project is released under the Apache 2.0 License.