Admin and Permissionsļƒ

Permissions can be defined and managed at different levels such as process groups, individual processes, or users.

Setting up Admin in Config (YAML)ļƒ

To initiate the creation of a process model, it is necessary to configure the terraform_deployed_environment.yml file by including at least one Admin user.

Git Repository - Config file

groups:
  admin:
    users: [admin@spiffworkflow.org]

permissions:
  admin-type-user:
    groups: [admin]
    actions: [create, read, update, delete]
    uri: /*

Groupsļƒ

The ā€œgroupsā€ section defines a group called ā€œadmin.ā€ This group is intended for users who have administrative privileges within the system. In this example, the ā€œadminā€ group consists of a single user with the associated email address. Multiple groups can be added.

Permissionsļƒ

Each permission has a name. This is just for documentation purposes and isnā€™t used by the system. In this example, we are describing permissions for an ā€œadmin-type-user.ā€

There are three keys allowed under each permission:

  • groups: lists the groups to which the permission applies (admin in this case)

  • actions: lists the specific actions that are permitted for the group

    • actions can be negated by prepending with ā€œDENY:ā€

  • uri: defines the target resource for these permissions

    • /* indicates that the permissions apply to all resources within the system

Permissions allowed:

  • create

  • read

  • update

  • delete

  • start

  • all

To allow reading and updating, it would look like this:

["read", "update"]

To allow reading and DISALLOW updating, it would look like this:

["read", "DENY:update"]

Site Administrationļƒ

Once the basic configuration setup is completed, specifying admin rights, you generally wonā€™t require additional permissions for designing processes and using the site. However, there might be certain situations that call for access control beyond the site or group level. In such cases, you have the flexibility to define and tailor admin requirements in a more detailed manner to fulfill specific needs.

Step 1: Create Process Groupļƒ

From the main menu select ā€˜Processesā€™ and click on the ā€˜Add a process groupā€™ button.

add_a_process_group

Complete the Process Groups form by entering the

  • Name (ensuring it reflects admin and permissions)

  • Identifier (which must be unique)

  • Description.

Once the required fields are filled, the form can be submitted.

add_a_process_group

The new Process Groups tile will be available under the Process Groups view.

site_administration

Step 2: Add Process Modelļƒ

  • Select ā€˜Add a process modelā€™ and complete the following form fields:

  • Name: Provide a descriptive name for the process model.

  • Identifier: Enter a unique identifier for the process model.

  • Description: Provide a brief description of the process model, outlining its purpose or functionality.

  • Notification Type: Specify the type of notification related to the process model.

  • Notification Addresses: Enter the addresses or destinations where notifications should be sent in the event that a process instance encounters an error. You do not need to worry about setting these values unless you are interested in custom Process Error Handling.

  • Metadata Extraction Path: You can provide one or more metadata extractions to uplift data from your process instances to provide quick access in searches and perspectives. Specify the key and path/location where metadata extraction should occur within the process model. For example, if you have a script task that runs the statement great_color = "blue", then you would set extraction path to great_color. You would probably also set the extraction key to great_color. But if you wanted to, you could just call it color, assuming you wanted that to be the name used in reports, etc.

Make sure to accurately fill in all the required fields in the Process Model form to ensure proper configuration and functionality.

add_process_model

Step 3: Upload Workflowsļƒ

All the required workflows can be downloaded from Github - set-permissions

Select to upload all downloaded files to the newly created Process model. add_file

Upload the following files:

  • permissions.bpmn - Primary file

  • groups_permissions.dmn

  • users_to_groups.dmn

upload_file

The Process Model view should now include all uploaded files. upload_file

Step 4: Understand the Process Modelsļƒ

Read more about DMN tables and how they work here.

Users to Groupsļƒ

Assess the roles and responsibilities of users within your organization or system. Look for common patterns or similarities in their job functions and tasks related to specific processes or process groups.

Add a user email under the users ā€˜columnā€™ and the group name under ā€˜groupsā€™ and donā€™t forget to add double quotes.

Note

Based on DMN functionality, leaving the ā€œ*ā€ column empty means that all rules (ā€˜Whenā€™) will be triggered without specifying a condition. Read more about DMN tables to understand how the rules engine can be utilized for many different scenarios.

user_to_groups

Group Permissionļƒ

Now that the groups have been identified, their permissions can be set by adding the group name under the ā€œpermissions_groupā€ column.

  • To determine a userā€™s capabilities within the permissible scope, you can define specific permissions. These permissions can be combined in a sequence if multiple apply to a particular rule. For instance, [ā€œreadā€, ā€œstartā€] indicates that the user can perform both reading and starting actions. Alternatively, [All] can be employed to grant unrestricted access.

  • The hit policy is set to ā€œCollectā€ which means that all conditions that are true will be applied. Read more about DMN tables and hit policies here.

  • The permission URL can be configured to define the userā€™s access privileges. Our objective is to streamline the process by minimizing the necessity of being familiar with the complete set of permission URLs. In most instances, utilizing BASIC and ELEVATED permissions, as well as PM/PG, should be sufficient. However, it is also feasible to directly incorporate any API URL into the permissions.

In truth, what you are doing is writing an expression. In this case, it would read that if the variable ā€˜permissions_groupā€™ type string is equal to ā€˜permissionsā€™ variable of type string then set the ā€˜permission_urlā€™ equal to the associated value.

Note

If you find coding more familiar and preferable to constructing DMN tables, you may notice similarities between this DMN table and the shared permission configuration file. This similarity can help clarify or make it easier for you to understand the DMN table structure and its relation to the permission configuration.

group_permission

Step 5: Start Processļƒ

To ensure that User Groups and Permissions take effect, it is necessary to run the process at least once. Whenever changes are made to any of these diagrams, like adding a user group or permission, the process should be started and completed successfully in order for the changes to be applied.