Technical Account Module - Technical Assets

Last modified by Jiří Koula on 2026/09/09 01:03

Overview

This feature is under active development in IdM 15 and there may be backwards incompatible changes until it's planned finalization in Q1 2027.

A technical asset represents a specific application, information system, or technological unit that requires its own access permissions to function and communicate with its environment (other applications and systems). By itself, it is not a specific account; rather, it is the owner and umbrella element for technical accounts (service accounts).

Examples:

  • An integration platform (e.g., the IdM itself) needs to access various systems (AD, HR system, SAP, etc.).
  • An HR portal needs to access AD to check which employees are active, and the payroll system to check remaining vacation balances.
  • A monitoring tool requires access to the monitored systems.

The primary reason for registering technical assets is to ensure that every technical account within the organization has a clearly defined owner and does not remain anonymous. Therefore, we define two key human roles for each technical asset:

  • Technical Asset Guarantor: A person from the business or management side who bears overall functional and compliance responsibility for the given asset. The Guarantor approves permissions for individual technical accounts under the given technical asset.
  • Technical Asset Holder: A technical specialist who actually works with asset accounts in practice. In the IdM, the Holder securely retrieves passwords, configures them on target systems, and creates requests for roles that grant the permissions the technical account requires for its intended use.

Thanks to this Person  Technical Asset  Technical Accounts linkage, we can precisely audit at any time who is responsible for which technology and who manages its access rights, which is also crucial from a regulatory standpoint to ensure the organization's compliance with legislative requirements, such as the NIS2 Directive.

Purpose

  • Centralize management of technical accounts under logical asset groupings
  • Enable role-based access control for asset-related operations
  • Provide audit capabilities for compliance requirements
  • Support notifications via NOTIFY event

It is possible for a technical account to exist and function while not belonging to any technical asset. There are configuration properties that determine who - if anyone - can create such accounts.

idm.pub.tech.techAccountWizard.accountWithoutAssetForAdmin = true/false - decides whether admin can create accounts without a technical asset

idm.pub.tech.techAccountWizard.accountWithoutAssetRoles = ... - contains a list of role uuids such that the identities with those roles can create accounts without a technical asset

Even banning creation of technical accounts without assets entirely has no effect on technical accounts that were without assets from before - they will still function as normal.

The typical use-cases are as follows:

Use caseaccountWithoutAssetForAdminaccountWithoutAssetForRoles
No technical assets at alltrueuserRole
Some accounts have technical assets, some don'ttruea specific subset of roles for informed users
All accounts have technical assetsfalse

EMPTY

Entities

ER Diagram

┌──────────────────┐        ┌────────────────┐
│ TechnicalAccount │◄─ ─ ─ ─│ TechnicalAsset │
└──────────────────┘        └────────────────┘
       │                             │      ┌─────────────────────────┐
       ▼                             ├─────►│ TechnicalAssetGuarantor │◄────────┐
┌─────────────────────────┐          │      └─────────────────────────┘         │     ┌─────────────┐
│ TechnicalAccountAccount │          │                                          ├─────│ IdmIdentity │
└─────────────────────────┘          │      ┌──────────────────────┐            │     └─────────────┘
       ▲                             ├─────►│ TechnicalAssetHolder │◄───────────┘
       │                             │      └──────────────────────┘
┌────────────┐                       │
│ AccAccount │                       │      ┌─────────────────────────────┐
└────────────┘                       ├─────►│ TechnicalAssetGuarantorRole │◄────┐
                                     │      └─────────────────────────────┘     │     ┌─────────┐
                                     │                                          ├─────│ IdmRole │
                                     │      ┌──────────────────────────┐        │     └─────────┘
                                     └─────►│ TechnicalAssetHolderRole │◄───────┘
                                            └──────────────────────────┘

TechnicalAccount

The technical account has been extended with an optional attribute specifying which technical asset it belongs to. If a technical asset becomes disabled, the technical accounts belonging to it will become disabled as well. Note that this doesn't work in reverse - if a technical asset becomes enabled again, its technical accounts will stay disabled until set to enabled manually. Read more about technical accounts here.

Key Attributes

AttributeTypeDescription
technicalAssetUUIDoptional attribute specifying which technical asset the technical account belongs to

TechnicalAsset

The primary entity representing a technical asset that can contain multiple technical accounts.

Key Attributes

AttributeTypeDescription
idUUIDprimary identifier
codeStringunique business identifier of the asset
nameStringasset name
descriptionStringasset description
disabledBooleanflag indicating whether the asset is disabled
pamBooleanflag indicating whether the asset is managed under Privileged Access Management (PAM)
zoneStringsecurity zone in which the application represented by the asset resides; see Asset assignment validation
externalIdStringidentifier assigned by an external system for integration purposes
externalCodeStringcode from an external system
validFromLocalDatevalidity start date
validTillLocalDatevalidity end date

Permissions

PermissionDescription
ADMINall permissions
COUNTpermission to retrieve the count of entities
AUTOCOMPLETEpermission to display the entity in autocomplete suggestions
READpermission to read the entity
CREATEpermission to create the entity
UPDATEpermission to edit entity attributes
DELETEpermission to delete the entity
SETTOTECHNICALACCOUNTpermission to assign a technical account to the given Technical Asset

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAssetByGuarantorEvaluatorRegularReturns technical assets where the logged user is a guarantor - either directly by identity or indirectly by role.No attributes
TechnicalAssetByHolderEvaluatorRegularReturns technical assets where the logged user is a holder - either directly by identity or indirectly by role.No attributes

Technical asset CSV import

To create/update many technical assets at once, IdStory IdM provides a long running task that can import them from a CSV file. You can read more about this task here

Asset assignment validation

Assigning a technical asset to a technical account is subject to a validation that answers a single question: may this technical asset be assigned to this technical account? The rule is not hardcoded - it is a Groovy script referenced from configuration, so each deployment decides what makes a pair valid.

A technical account references its technical asset and is linked to an AccAccount through TechnicalAccountAccount. The script always receives this pair - the technical asset and the linked AccAccount.

Zone

The delivered rule compares the zone attribute, which exists on both sides of the pair:

  • Zone of the technical asset - the security zone in which the application represented by the technical asset resides.
  • Zone of the technical account - the security zone in which the application the technical account belongs to resides. The value itself is stored on the linked AccAccount.

Configuration

# Code of the script deciding whether a technical asset may be assigned to a technical account.
# Default: permissive script, nothing is enforced.
idm.sec.tech.accountAssetAssignment.checkScript=techAccountAssetAssignmentAllowAll

Two scripts are delivered with the module:

Script codeBehaviour
techAccountAssetAssignmentAllowAllAlways returns `true` - any technical asset may be assigned to any technical account. This is the default value of the property, so nothing is enforced out of the box.
techAccountAssetAssignmentZoneMatchAccepts the pair when the asset has no zone, or when the asset zone equals the account zone.

To enforce matching zones, set the property to techAccountAssetAssignmentZoneMatch. To implement a different rule, create your own script and put its code into the property.

Script contract

The script is evaluated as a system script and receives two parameters:

ParameterTypeDescription
technicalAssetTechnicalAssetDtothe technical asset the technical account is to have; can be `null` when the asset is being removed
accAccountAccAccountDtothe account linked to the technical account; always filled in

The script must return a Boolean - `true` when the pair is acceptable, `false` when it is not. Any other return value is reported as TECH\_ACCOUNT\_ASSET\_ASSIGNMENT\_SCRIPT\_RESULT\_NOT\_BOOLEAN.

Success

The script decides about the whole pair, not only about the zone. It can use any persisted attribute of the asset or of the account - tier, system, entity type and so on. EAV values are not available - both DTOs are loaded without the form context. Keep the script fast, it is evaluated on every save of the involved entities.

Example script

The script below is the zone rule delivered as techAccountAssetAssignmentZoneMatch. Use it as a starting point for your own rule.

Create the script in the Scripts agenda with category SYSTEM and parameters technicalAsset, accAccount. Classes used in the body have to be allowed for the script - the example above needs com.google.common.base.Strings, eu.bcvsolutions.idm.tech.model.dto.TechnicalAssetDto and eu.bcvsolutions.idm.acc.dto.AccAccountDto.

When the validation runs

The check is enforced on save of the involved entities, not only through the wizard or the CSV import:

  • change of an AccAccount that is linked to a technical account
  • change of the technical asset on a technical account
  • creation of the link between a technical account and an AccAccount
  • change of a technical asset that is assigned to technical accounts
Warning

The validation is not limited to a change of the zone. Because the script may decide by any attribute, any change of the asset or of the account runs it again. Provisioning of a technical account saves the account as well, so provisioning goes through the validation too.

When the pair is rejected, the operation fails with result code TECH\_ACCOUNT\_ASSET\_ASSIGNMENT\_REJECTED:

Technical asset [asset-code] cannot be assigned to technical account [account-code] (account [account-uid]) - rejected by the assignment check script [techAccountAssetAssignmentZoneMatch].

CSV import

The technical account CSV import validates the target state of every row before it writes anything, using the same script. A row whose resulting pair would be rejected fails already in the pre-save validation, the rest of the batch continues, and a dry run reports the same verdict.

Tier

The tier attribute on AccAccount is an informational, free-form value. Neither of the delivered scripts takes it into account, so by default it imposes no constraint - it is used for classification and table display only. A custom script can use it.

Error

Switching the property to a restrictive script on an existing deployment applies the rule to data that was created without it. Pairs violating the new rule can no longer be saved - including changes that have nothing to do with the asset or the zone, and including provisioning of the affected technical accounts. Review and fix the existing data before you turn the rule on.

TechnicalAssetGuarantor

Represents direct assignment of an identity as guarantor for a technical asset.

Key Attributes

AttributeTypeDescription
idUUIDprimary identifier
externalIdStringidentifier assigned by an external system for integration purposes
technicalAssetUUIDid of the technical asset to be guaranted
guarantorUUIDid of the user to be guarantor

Permissions

PermissionDescription
ADMINall permissions
COUNTpermission to retrieve the count of entities
AUTOCOMPLETEpermission to display the entity in autocomplete suggestions
READpermission to read the entity
CREATEpermission to create the entity
UPDATEpermission to edit entity attributes
DELETEpermission to delete the entity

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAssetGuarantorByTechnicalAssetGuarantorEvaluatorRegularReturns technical asset guarantors where the logged user is a guarantor of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetGuarantorByTechnicalAssetHolderEvaluatorRegularReturns technical asset guarantors where the logged user is a holder of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetGuarantorByTechnicalAssetTransitiveEvaluatorTransitiveReturns technical asset guarantors where the logged user has access to the parent technical asset. Permissions are transitively derived from the technical asset the technical asset guarantor belongs to.Transfer permissions - a list of permissions to be transferred from a technical asset to its guarantors; if the list is empty, all permissions held by the user for the given technical asset will be transferred to its guarantors

TechnicalAssetGuarantorRole

Represents the assignment of a role to a technical asset, where granting this role to a user designates them as a guarantor of that asset

Key Attributes

AttributeTypeDescription
idUUIDprimary identifier
externalIdStringidentifier assigned by an external system for integration purposes
technicalAssetUUIDid of the technical asset to be guaranted
roleUUIDid of the role which, when assigned to a user, makes them a guarantor

Permissions

PermissionDescription
ADMINall permissions
COUNTpermission to retrieve the count of entities
AUTOCOMPLETEpermission to display the entity in autocomplete suggestions
READpermission to read the entity
CREATEpermission to create the entity
UPDATEpermission to edit entity attributes
DELETEpermission to delete the entity

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAssetGuarantorRoleByTechnicalAssetGuarantorEvaluatorRegularReturns technical asset guarantor roles where the logged user is a guarantor of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetGuarantorRoleByTechnicalAssetHolderEvaluatorRegularReturns technical asset guarantor roles where the logged user is a holder of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetGuarantorRoleByTechnicalAssetTransitiveEvaluatorTransitiveReturns technical asset guarantor roles where the logged user has access to the parent technical asset. Permissions are transitively derived from the technical asset the technical asset guarantor role belongs to.Transfer permissions - a list of permissions to be transferred from a technical asset to its guarantor roles; if the list is empty, all permissions held by the user for the given technical asset will be transferred to its guarantor roles

TechnicalAssetHolder

Represents direct assignment of an identity as holder for a technical asset.

Key Attributes

AttributeTypeDescription
idUUIDprimary identifier
externalIdStringidentifier assigned by an external system for integration purposes
technicalAssetUUIDid of the technical asset to be managed
holderUUIDid of the user to be holder

Permissions

PermissionDescription
ADMINall permissions
COUNTpermission to retrieve the count of entities
AUTOCOMPLETEpermission to display the entity in autocomplete suggestions
READpermission to read the entity
CREATEpermission to create the entity
UPDATEpermission to edit entity attributes
DELETEpermission to delete the entity

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAssetHolderByTechnicalAssetGuarantorEvaluatorRegularReturns technical asset holders where the logged user is a guarantor of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetHolderByTechnicalAssetHolderEvaluatorRegularReturns technical asset holders where the logged user is a holder of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetHolderByTechnicalAssetTransitiveEvaluatorTransitiveReturns technical asset holders where the logged user has access to the parent technical asset. Permissions are transitively derived from the technical asset the technical asset holder belongs to.Transfer permissions - a list of permissions to be transferred from a technical asset to its holders; if the list is empty, all permissions held by the user for the given technical asset will be transferred to its holders

TechnicalAssetHolderRole

Represents the assignment of a role to a technical asset, where granting this role to a user designates them as a holder of that asset

Key Attributes

AttributeTypeDescription
idUUIDprimary identifier
externalIdStringidentifier assigned by an external system for integration purposes
technicalAssetUUIDid of the technical asset to be guaranted
roleUUIDid of the role which, when assigned to a user, makes them a holder

Permissions

PermissionDescription
ADMINall permissions
COUNTpermission to retrieve the count of entities
AUTOCOMPLETEpermission to display the entity in autocomplete suggestions
READpermission to read the entity
CREATEpermission to create the entity
UPDATEpermission to edit entity attributes
DELETEpermission to delete the entity

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAssetHolderRoleByTechnicalAssetGuarantorEvaluatorRegularReturns technical asset holder roles where the logged user is a guarantor of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetHolderRoleByTechnicalAssetHolderEvaluatorRegularReturns technical asset holder roles where the logged user is a holder of that technical asset - either directly by identity or indirectly by role.No attributes
TechnicalAssetHolderRoleByTechnicalAssetTransitiveEvaluatorTransitiveReturns technical asset holder roles where the logged user has access to the parent technical asset. Permissions are transitively derived from the technical asset the technical asset holder role belongs to.Transfer permissions - a list of permissions to be transferred from a technical asset to its holder roles; if the list is empty, all permissions held by the user for the given technical asset will be transferred to its holder roles

TechnicalAccountAccount

The link between a technical account and an account on a target system (AccAccount). The technical asset feature does not extend this entity, it only adds evaluators that derive access to the link from the technical asset the linked technical account belongs to. Links to technical accounts without a technical asset are never returned by these evaluators. Neither evaluator is part of the default techAssetGuarantorRole and techAssetHolderRole roles - configure them in an authorization policy where they are needed.

Evaluators

EvaluatorTypeDescriptionAttributes
TechnicalAccountAccountByTechnicalAssetGuarantorEvaluatorRegularReturns links between technical accounts and accounts where the logged user is a guarantor of the technical asset the technical account belongs to - either directly by identity or indirectly by role.No attributes
TechnicalAccountAccountByTechnicalAssetHolderEvaluatorRegularReturns links between technical accounts and accounts where the logged user is a holder of the technical asset the technical account belongs to - either directly by identity or indirectly by role.No attributes

AccAccount

The account on a target system linked to a technical account through TechnicalAccountAccount. As with the link itself, the technical asset feature only adds evaluators that derive access to the account from the technical asset the linked technical account belongs to. Accounts linked to technical accounts without a technical asset are never returned by these evaluators. Neither evaluator is part of the default techAssetGuarantorRole and techAssetHolderRole roles - configure them in an authorization policy where they are needed.

Do not grant the CREATE permission through these evaluators. An account that is being created is not linked to any technical account yet, so the evaluator cannot check that it belongs to a technical asset the user is a guarantor or holder of - the permission is therefore granted for any new account on any system. The remaining permissions are evaluated over an account that already exists and are not affected.

Evaluators

EvaluatorTypeDescriptionAttributes
AccAccountByTechnicalAssetGuarantorEvaluatorRegularReturns accounts linked to a technical account where the logged user is a guarantor of the technical asset the technical account belongs to - either directly by identity or indirectly by role.No attributes
AccAccountByTechnicalAssetHolderEvaluatorRegularReturns accounts linked to a technical account where the logged user is a holder of the technical asset the technical account belongs to - either directly by identity or indirectly by role.No attributes

Technical asset agenda

The overview of technical assets can be accessed via the "Technical assets" agenda in the main menu. By default, the agenda's Inactive filter is pre-set to show active assets only.

20260519-104132.png

Table Columns

ColumnDescription
CodeUnique business identifier of the technical asset
NameName of the technical asset, can be duplicit
DescriptionDescription of the technical asset
GuarantorsGuarantors of the technical asset, including those listed directly and those who are guarantors via an assigned guarantor role. To prevent overcrowding, the list is truncated to 5 identities.
HoldersHolders of the technical asset, including those listed directly and those who are holders via an assigned holder role. To prevent overcrowding, the list is truncated to 5 identities.
Valid fromStart date of the technical asset's validity
Valid tillEnd date of the technical asset's validity
InactiveFlag indicating that the technical asset is inactive
PAMFlag indicating whether the asset is managed under Privileged Access Management (PAM)
ZoneSecurity zone of the technical asset, rendered from the security-zones code list

Configurable columns

The set and order of rendered columns in the technical asset table can be configured via the public configuration property idm.pub.app.show.technicalAsset.table.columns. Comma is used as a separator; the order of the rendered columns is preserved as configured.

# Rendered columns in the technical asset table agenda. Comma is used as separator.
# Order of rendered columns is preserved as configured.
# Available columns:
# - code - unique business identifier of the asset
# - name - asset name
# - description - asset description
# - guarantors - direct and role-based guarantors (truncated to 5)
# - holders - direct and role-based holders (truncated to 5)
# - validFrom - validity start date
# - validTill - validity end date
# - disabled - inactive flag
# - pam - PAM flag (hidden by default - add explicitly to show it)
# - zone - security zone (hidden by default - add explicitly to show it)

idm.pub.app.show.technicalAsset.table.columns=code, name, description, guarantors, holders, validFrom, validTill, disabled

The pam and zone columns also control the corresponding filter fields - the PAM and Zone filters are shown only when the column itself is part of the configured value.

Success

The pam and zone columns are not rendered by default. To display them, include them in the configured value, e.g. idm.pub.app.show.technicalAsset.table.columns=code, name, pam, zone, disabled.

Filters

FilterDescription
Name or descriptionEnables full-text search within the name and description of the technical asset
CodeEnables searching by the technical asset code; an exact match is required
Valid fromEnables searching for technical assets with a specific validity start date
Valid tillEnables searching for technical assets with a specific validity end date
GuarantorEnables searching for technical assets by guarantor (either direct or via a role)
HolderEnables searching for technical assets by holder (either direct or via a role)
InactiveEnables searching only for active or only for inactive technical assets
ZoneEnables searching for technical assets by security zone
PAMEnables searching only for assets managed under PAM, or only for those that are not

Bulk Actions

Bulk actionDescriptionRequired permission
ReportBasic export of technical assetsalways available
Delete technical assetAllows deletion of technical assets, including subordinate entities (direct guarantors/holders and those via role). If the technical asset is assigned to technical accounts, this association is deleted.Delete
Information

If you want to delete technical accounts assigned to a specific Technical Asset, you need to do it manually. Deleting is a destructive operation, that also results in deleting the accounts on end systems, so IdM is not doing it automatically.

Technical asset Basic information

After clicking on the magnifying glass icon or the name of a technical asset in the technical asset table, the detail view of the given technical asset is displayed, with "Basic information" as the default sub-agenda. If the user has the Update permission for a technical asset, they can edit the fields.

The Inactive checkbox is always read-only, the activation/deactivation of a technical asset is done using the Activate/Deactivate button. To deactivate/activate a technical asset, the user needs the UPDATE permission. Otherwise the respective button won't be displayed.

Success

 Deactivating a technical asset will deactivate all its technical accounts as well. Reactivating a technical asset will NOT reactivate its accounts. The best way to reactivate a big number of technical accounts is to use the CSV import task 

20260519-104218.png

Fields

FieldDescription
CodeUnique business identifier of the technical asset
NameName of the technical asset, Can be duplicit
DescriptionDescription of the technical asset
Valid fromStart date of the technical asset's validity
Valid tillEnd date of the technical asset's validity
InactiveFlag indicating that the technical asset is inactive
PAMFlag indicating whether the asset is managed under Privileged Access Management (PAM)
ZoneSecurity zone in which the application represented by the asset resides (see Asset assignment validation)

Technical asset Technical accounts

The "Technical accounts" sub-agenda contains an overview of all technical accounts under the given technical asset.

technical_asset_accounts_1.png

Table Columns

ColumnDescription
Account identifierAccount identifier on the system
System nameName of the system to which the technical account provides access
Account guarantorsGuarantors of the technical account, including those listed directly and those who are guarantors via an assigned guarantor role
Valid fromStart date of the technical account's validity
Valid tillEnd date of the technical account's validity
Is protected from deleteFlag indicating that the technical account is protected from deletion (it is in quarantine)
Protected untillDate until which the technical account is protected from deletion (when the quarantine expires and the account will be deleted)

Filters

FilterDescription
Account identifierEnables searching by technical account name; an exact match is required
SystemEnables searching by the name of the system to which the technical account provides access.
Technical account typeEnables searching by system mapping
Account guarantorEnables searching for technical accounts by guarantor (either direct or via a role)
Valid fromEnables searching for technical accounts with a specific validity start date
Valid tillEnables searching for technical accounts with a specific validity end date
Protected from deletionEnables searching only for technical accounts that are in quarantine, or only for those that are not

Bulk actions

Bulk actionDescriptionRequired permissions
ReportBasic export of technical accountsalways available

Technical asset Guarantors

This sub-agenda allows you to manage the direct guarantors of the technical asset, as well as guarantor roles, the assignment of which makes a user a guarantor.

technical_asset_guarantors.png

Technical asset Holders

This sub-agenda allows you to manage the direct holders of the technical asset, as well as holder roles, the assignment of which makes a user a holder.

technical_asset_holders.png

Technical asset Audit

This sub-agenda displays the audit log for the technical asset and its related entities.

technical_asset_audit.png

Table columns

ColumnDescription
Entity typeType of entity upon which the action was performed
Entity (IdM)Entity upon which the action was performed
Sub owner codeCode of the secondary related entity
ActionType of performed action
Executed byUsername of the user who performed the action
Date of revisionDate and time when the action was performed
Changed attributesList of attributes changed during the action

Filters

FilterDescriptin
DateEnables searching for actions performed within a specific period
Entity typeEnables searching by the type of entity upon which the action was performed.
Executed byEnables searching by the username of the user who performed the action; an exact match is required
Own group search by changed attributesEnables searching for actions during which the given list of attributes was changed

Bulk actions

The audit table has no bulk actions.

Technical asset guarantor and holder roles

To simplify permission setup, the techAssetGuarantorRole and techAssetHolderRole roles have been created, which grant permissions to guarantors and holders of technical roles. These roles can either be nested under userRole or assigned directly to selected users. Default permission settings:

FeatureIn guarantor roleIn holder role
Read my technical assetsYesYes
Edit my technical assetsYesNo
Assign my technical assets to technical accountsNoYes
Read my technical asset guarantors - directYesYes
Manage my technical asset guarantors - directYesNo
Read my technical asset guarantors - by roleYesYes
Manage my technical asset guarantors - by roleYesNo
Read my technical asset holders - directYesYes
Manage my technical asset holders - directYesNo
Read my technical asset holders - by roleYesYes
Manage my technical asset holders - by roleYesNo
Read technical accounts under my technical assetsYesYes
Edit technical accounts under my technical assetsNoYes
Edit accounts on system related to technical accounts under my technical assetsNoYes
Read roles assigned to technical accounts under my technical assetsYesYes
Read role requests for technical accounts under my technical assetsYesYes
Create role requests for technical accounts under my technical assetsNoYes