MOHAMED BOUZIANE
MOHAMED BOUZIANE

Reputation: 41

Camunda bpm - How add multiple admin users?

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

Answers (1)

Kilian
Kilian

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 :

  1. Adding users in the camunda-admin group as shown above.
  2. Configure the Administrator Authorization Plugin, to grant user or group of users all permissions.
  3. Create your own group (see Group Management) with all permissions granted and assign it to the users you want.
  4. Simply grant one specific user all permissions.

Finally, to add multiple users within a specific group in your application.yaml, you can have a look at this Github post.

Upvotes: 4

Related Questions