Configuring Base Group Settings
Configuration of Base-Groups in security_base_groups.xml
The security_base_groups.xml file enables the addition of custom groups with specific roles. To create a new group, you need to add a new <group> tag within the <baseGroups> tag with the following attributes:
| Tag | Description |
|---|---|
group | name: The name of the OAuth group. description: A human-readable text that describes the purpose of this group. |
<hasRoles/> | Contains a comma-separated list of all roles assigned to this group. Using * assigns all configured roles. |
<isMemberOf/> | Contains a comma-separated list of all base groups assigned to this group. Using * assigns all configured groups. |
Example
<group name="MonitoringDetails">
<isMemberOf>
Logging
ProcessMonitoring
</isMemberOf>
<hasRoles>list,Scenario.SuperUser</hasRoles>
</group>