Create multiple user to access camunda web

Hello !

I have requirement to create multiple user during initial camunda start to access camunda web. Currently, I am using spring boot application and is allowing only one user to create.
I tried updating application.yml with multiple user details(refer below code) but no user got created.

Is there any way to create multiple user during initial camunda start up?

Application.yml

camunda.bpm.admin-user:
id:

  • demo
  • demo1

password:

  • demo
  • demo1

Hi @amithsrinivasan,

have a look into this DemoDataGenerator: https://github.com/camunda/camunda-bpm-platform/blob/master/examples/invoice/src/main/java/org/camunda/bpm/example/invoice/DemoDataGenerator.java

Hope this helps, Ingo