@backstage-community/plugin-rbac 1.33.5 → 1.33.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +23 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
### Dependencies
|
|
2
2
|
|
|
3
|
+
## 1.33.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5b19b0d: Update documentation information about `pluginsWithPermission` setting. In order for the RBAC UI to display available permissions provided by installed plugins, this setting needs to be configured.
|
|
8
|
+
|
|
3
9
|
## 1.33.5
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -104,3 +104,26 @@ permission:
|
|
|
104
104
|
```
|
|
105
105
|
|
|
106
106
|
- Integrate the [`SignIn`](https://backstage.io/docs/auth/#sign-in-configuration) component to be able to sign-in to the Backstage instance.
|
|
107
|
+
|
|
108
|
+
### Configure plugins with permission
|
|
109
|
+
|
|
110
|
+
In order for the RBAC UI to display available permissions provided by installed plugins, add the corresponding
|
|
111
|
+
plugin IDs to the `app-config.yaml`.
|
|
112
|
+
|
|
113
|
+
You can specify the plugins with permission in your application configuration as follows:
|
|
114
|
+
|
|
115
|
+
```YAML
|
|
116
|
+
permission:
|
|
117
|
+
enabled: true
|
|
118
|
+
rbac:
|
|
119
|
+
admin:
|
|
120
|
+
users:
|
|
121
|
+
- name: user:default/alice
|
|
122
|
+
- name: group:default/admins
|
|
123
|
+
pluginsWithPermission:
|
|
124
|
+
- catalog
|
|
125
|
+
- scaffolder
|
|
126
|
+
- permission
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
For more information on the available permissions, refer to the [RBAC permissions documentation](../rbac-backend/docs/permissions.md).
|