Manage Keycloak resources (realms, clients, roles, etc) inside your [FBL](https://fbl.fireblink.com) flows.
npm install @fbl-plugins/keycloak-admin-clientManage Keycloak resources (realms, clients, roles, etc) inside your FBL flows.





fbl is a flow automation tool. That generally means it can automate any kind of routine processes and allows to create some really complex combinations of actions.
Keycloak management for build automation pipelines might be tricky sometimes, especially due to limited import functionality. Current plugin helps to bypass some of that limitations and seamlessly integrate with other fbl flows.
There are multiple ways how plugin can be integrated into your flow.
This is the most recommended way. Create package.json next to your flow file with following content:
``json`
{
"name": "flow-name",
"version": "1.0.0",
"description": "",
"scripts": {
"fbl": "fbl"
},
"license": "UNLICENSED",
"dependencies": {
"@fbl-plguins/keycloak-admin-client": "1.1.2",
"fbl": "1.10.0"
}
}
Then you can install dependencies as any other node module yarn install depending on the package manager of your choice.
After that you can use yarn fbl to execute your flow or even register a custom script inside "scripts".
npm i -g @fbl-plugins/keycloak-admin-client
- via cli: fbl -p @fbl-plguins/keycloak-admin-client
- via flow:
`yaml
requires:
fbl: '>=1.10.0 <2.0.0'
plugins:
'@fbl-plguins/keycloak-admin-client': '>=1.1.2'
pipeline:
# your flow goes here
``
- Realm Management
- Realm Role Management
- Realm Events Config
- Client Management
- Client Role Management
- Client Secret
- Client Service Account Role Mappings
- Group Management
- Group Role Mappings