(Optional) Setting Up Identity Mapping
You can use identity mapping properties to normalize user identities. Once you set up identity mapping, NiFi treats identities authenticated by different identity providers (certificates, LDAP, Kerberos) the same. This allows you to avoid creating duplicate users. Additionally, you only need to set up user-specific configurations such as authorizations once per user.
- From the NiFi service Configs tab, click Advanced nifi-properties.
- Use the Filter box to search for nifi.security.identity.mapping.pattern.
- Enter the following values:
Table 1. Identity mapping values Field Sample value nifi.security.identity.mapping.pattern.dn ^CN=(.*?), OU=(.*?)$ nifi.security.identity.mapping.value.dn $1@$2 nifi.security.identity.mapping.pattern.kerb ^(.*?)/instance@(.*?)$ nifi.security.identity.mapping.value.kerb $1@$2 - Click Save.
- Restart NiFi using the Restart all Required option from the Action menu.
Example
The following examples demonstrate normalizing DNs from certificates and principals from Kerberos:
nifi.security.identity.mapping.pattern.dn=^CN=(.*?), OU=(.*?), O=(.*?), L=(.*?), ST=(.*?), C=(.*?)$ nifi.security.identity.mapping.value.dn=$1@$2 nifi.security.identity.mapping.pattern.kerb=^(.*?)/instance@(.*?)$ nifi.security.identity.mapping.value.kerb=$1@$2