Users

Administrators

Administrators can configure, monitor and manage the Axon.ivy Engine. At least on administrator must be configured in ivy.yaml.

 1# Engine Administrators
 2# [engineDir]/configuration/ivy.yaml
 3Administrators:
 4  devop:
 5    Password: "${hash:admin}"
 6    Email: devop@localhost.com
 7  admin:
 8    Password: "${hash:mySecret}"
 9    Email: info@localhost.com
10    FullName: "James David"

It is highly recommended to hash passwords of administrators by enclosing the password in cleartext with "${hash: and }" like "${hash:1234}" for password 1234. Hashed passwords can not be decrypted anymore. The Axon.ivy Engine will automatically hash and replace the password in file, when the configuration will be loaded

Workflow Users

Workflow Users are kept in a so-called security system which can be defined in ivy.yaml. Each application defines in app.yaml which security system is used. There are two types of security systems:

  • Internal Security System: Used to manage the users directly on the Axon.ivy Engine. There is only one Internal Security System, which is called Ivy Security System. No further settings are available for this Security System. This is also the default Security System for application which has no security system defined.

  • External Security System: Used to synchronize users from a name and directory service such as Active Directory. The example below shows a simple connection to an Active Directory. Have a look at the ivy.securitysystem.yaml for all supported name and directory services and further settings.

     1# sample ivy.yaml that define an Active Directory as security system
     2SecuritySystems:
     3  # Custom definied name of your security system
     4  ActiveDirectoryOfMyCompany:
     5    Provider: "Microsoft Active Directory"
     6    Connection:
     7      Url: "ldap://activedirectory.axonivy.com:389"
     8      UserName: "activedirectory_user@axonivy.com"
     9      Password: "${encrypt:1234}"
    10    Binding:
    11      DefaultContext: "DC=axonivy,DC=com"
    12      ImportUsersOfGroup: "CN=AXON Ivy IT,DC=axonivy,DC=com"
    
    1# app.yaml located in e.g. <configuration>/app-myApp.yaml
    2SecuritySystem: ActiveDirectoryOfMyCompany