Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

MLC-service provides one main mechanism for authorization.

The next actions can be protected through MCL configurations:

  • Deploying BPMNs.

  • Sending Signals.

Sample configurations:

mlc:
  camunda:
    access:
      enabled: true
      rest:
        deploy:
          groups: group1
        signal:
          groups: group2
        signal-responsive:
          groups: group3,group1

The above configurations will only allow:

  • Able to Deploy: Only authenticated requests arriving from admins or requests belonging to group: group1

  • Able to call signal: Only authenticated requests arriving from admins or requests belonging to group: group2

  • Able to call signal-responsive: Only authenticated requests arriving from admins or requests belonging to group: group3 and group1

  • No labels