
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
@backstage-community/plugin-rbac-backend
Advanced tools
This plugin seamlessly integrates with the Backstage permission framework to empower you with robust role-based access control capabilities within your Backstage environment.
The Backstage permission framework is a core component of the Backstage project, designed to provide meticulous control over resource and action access. Our RBAC plugin harnesses the power of this framework, allowing you to tailor access permissions without the need for coding. Instead, you can effortlessly manage your access policies through User interface embedded within Backstage or via the configuration files.
With the RBAC plugin, you'll have the means to efficiently administer permissions within your Backstage instance by assigning them to users and groups.
Before you dive into utilizing the RBAC plugin for Backstage, there are a few essential prerequisites to ensure a seamless experience. Please review the following requirements to make sure your environment is properly set up
NOTE: This section is only relevant if you are still on the old backend system.
To effectively utilize the RBAC plugin, you must have the Backstage permission framework in place. If you're using the Red Hat Developer Hub, some of these steps may have already been completed for you. However, for other Backstage application instances, please verify that the following prerequisites are satisfied:
You need to set up the permission framework in Backstage.Since this plugin provides a dynamic policy that replaces the traditional one, there's no need to create a policy manually. Please note that one of the requirements for permission framework is enabling the service-to-service authentication. Ensure that you complete these authentication setup steps as well.
The permission framework, and consequently, this RBAC plugin, rely on the concept of group membership. To ensure smooth operation, please follow the Sign-in identities and resolvers documentation. It's crucial that when populating groups, you include any groups that you plan to assign permissions to.
To integrate the RBAC plugin into your Backstage instance, follow these steps.
Add the RBAC plugin packages as dependencies by running the following command.
yarn workspace backend add @backstage-community/plugin-rbac-backend
NOTE: If you are using Red Hat Developer Hub backend plugin is pre-installed and you do not need this step.
The RBAC plugin supports the integration with the new backend system.
Add the RBAC plugin to the packages/backend/src/index.ts
file and remove the Permission backend plugin and Allow All Permission policy module.
// permission plugin
- backend.add(import('@backstage/plugin-permission-backend/alpha'));
- backend.add(
- import('@backstage/plugin-permission-backend-module-allow-all-policy'),
- );
+ backend.add(import('@backstage-community/plugin-rbac-backend'));
The RBAC plugin empowers you to manage permission policies for users and groups with a designated group of individuals known as policy administrators. These administrators are granted access to the RBAC plugin's REST API and user interface as well as the ability to read from the catalog.
You can specify the policy administrators in your application configuration as follows:
permission:
enabled: true
rbac:
admin:
users:
- name: user:default/alice
- name: group:default/admins
The RBAC plugin also enables you to grant users the title of 'super user,' which provides them with unrestricted access throughout the Backstage instance.
You can specify the super users in your application configuration as follows:
permission:
enabled: true
rbac:
admin:
superUsers:
- name: user:default/alice
- name: user:default/mike
For more information on the available API endpoints accessible to the policy administrators, refer to the API documentation.
In order for the RBAC UI to display available permissions provided by installed plugins, add the corresponding
plugin IDs to the app-config.yaml
.
You can specify the plugins with permission in your application configuration as follows:
permission:
enabled: true
rbac:
pluginsWithPermission:
- catalog
- scaffolder
- permission
admin:
users:
- name: user:default/alice
- name: group:default/admins
For more information on the available permissions, refer to the RBAC permissions documentation.
The RBAC plugin also allows you to import policies from an external file. These policies are defined in the Casbin rules format, known for its simplicity and clarity. For a quick start, please refer to the format details in the provided link.
Here's an example of an external permission policies configuration file named rbac-policy.csv
:
p, role:default/team_a, catalog-entity, read, deny
p, role:default/team_b, catalog.entity.create, create, deny
g, user:default/bob, role:default/team_a
g, group:default/team_b, role:default/team_b
NOTE: When you add a role in the permission policies configuration file, ensure that the role is associated with at least one permission policy with the allow
effect.
You can specify the path to this configuration file in your application configuration:
permission:
enabled: true
rbac:
policies-csv-file: /some/path/rbac-policy.csv
Also, there is an additional configuration value that allows for the reloading of the CSV file without the need to restart.
permission:
enabled: true
rbac:
policies-csv-file: /some/path/rbac-policy.csv
policyFileReload: true
For more information on the available permissions, refer to the RBAC permissions documentation.
We also have a fairly strict validation for permission policies and roles based on the originating role's source information, refer to the api documentation.
The RBAC plugin allows you to import conditional policies from an external file. User can defined conditional policies for roles created with the help of the policies-csv-file. Conditional policies should be defined as object sequences in the YAML format.
You can specify the path to this configuration file in your application configuration:
permission:
enabled: true
rbac:
conditionalPoliciesFile: /some/path/conditional-policies.yaml
policies-csv-file: /some/path/rbac-policy.csv
Also, there is an additional configuration value that allows for the reloading of the file without the need to restart.
permission:
enabled: true
rbac:
conditionalPoliciesFile: /some/path/conditional-policies.yaml
policies-csv-file: /some/path/rbac-policy.csv
policyFileReload: true
This feature supports nested conditional policies.
Example of the conditional policies file:
---
result: CONDITIONAL
roleEntityRef: 'role:default/test'
pluginId: catalog
resourceType: catalog-entity
permissionMapping:
- read
- update
conditions:
rule: IS_ENTITY_OWNER
resourceType: catalog-entity
params:
claims:
- 'group:default/team-a'
- 'group:default/team-b'
---
result: CONDITIONAL
roleEntityRef: 'role:default/test'
pluginId: catalog
resourceType: catalog-entity
permissionMapping:
- delete
conditions:
rule: IS_ENTITY_OWNER
resourceType: catalog-entity
params:
claims:
- 'group:default/team-a'
Information about condition policies format you can find in the doc: Conditional policies documentation. There is only one difference: yaml format compare to json. But yaml and json are back convertiable.
The RBAC plugin offers the option to store policies in a database. It supports two database storage options:
Ensure that you have already configured the database backend for your Backstage instance, as the RBAC plugin utilizes the same database configuration.
The RBAC plugin also includes an option max depth feature for organizations with potentially complex group hierarchy, this configuration value will ensure that the RBAC plugin will stop at a certain depth when building user graphs.
permission:
enabled: true
rbac:
maxDepth: 1
The maxDepth must be greater than 0 to ensure that the graphs are built correctly. Also the graph will be built with a hierarchy of 1 + maxDepth.
More information about group hierarchy can be found in the doc: Group hierarchy.
We also include the ability to create and load in RBAC backend plugin modules that can be used to make connections to third part access management tools. For more information, consult the RBAC Providers documentation.
FAQs
Unknown package
The npm package @backstage-community/plugin-rbac-backend receives a total of 2,983 weekly downloads. As such, @backstage-community/plugin-rbac-backend popularity was classified as popular.
We found that @backstage-community/plugin-rbac-backend demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.