Reputation: 41
I’m working on camunda CMMN project and I would like to create multiple admin users from src/main/resources/application.yaml
.
So this is my application.yaml
file :
camunda.bpm:
admin-user:
id: demo
password: demo
firstName: Demo
lastName: Demo
filter:
create: All tasks
How could I add more admin users ?
Upvotes: 3
Views: 2862
Reputation: 579
As said in the Camunda documentation in User Management, "users who belong to the group camunda-admin have administrator privileges".
You have 4 ways to create an user with all permissions as shown in Authorization Management :
camunda-admin
group as shown above.Finally, to add multiple users within a specific group in your application.yaml
, you can have a look at this Github post.
Upvotes: 4