Sample Microsoft Entra ID Configuration File

The file is a sample configuration file that can be used in order to configure Microsoft Entra ID in the Remote Control Server.

# ########################## Identity Providers Properties ########################

# ########################## Connection Definition for Microsoft Entra ID ########################

# Client ID used to establish a connection to Microsoft Entra ID

entraID.clientID=

# Tenant ID used to establish a connection to Microsoft Entra ID

entraID.tenantID=

# Secret used to establish a connection to Microsoft Entra ID

entraID.secret=

# Instructs Remote Control to read the value of the secret parameter as encrypted (true) or plain text (false)

entraID.secretEncrypted=false

# Specifies the Azure Authority Host to use. Its value is one of the following strings:

# "https://login.microsoftonline.com/" -- Public Cloud

# "https://login.microsoftonline.us/" -- US Government

entraID.authorityHost=https://login.microsoftonline.com/

# Base URL for Microsoft Entra ID

entraID.baseUrl=https://graph.microsoft.com/v1.0

# Default scope for Microsoft Entra ID

entraID.defaultScope=https://graph.microsoft.com/.default

# ########################## Groups Definition for Microsoft Entra ID ########################

# Microsoft Entra ID filter expression used for groups searches

# <br/> e.g. startswith(displayName,'TRC')

entraID.groupFilter=startswith(displayName,'TRC')

# ########################## Users Definition for Microsoft Entra ID ########################

# Microsoft Entra ID filter expression used for users searches

# <br/> e.g. startswith(displayName,'Bob')

entraID.userFilter=startswith(displayName,'Bob')

# Set this value to true if a user has to be a member of the groups found in the group search

entraID.userInGroup=false

# Microsoft Entra ID attribute used for User ID

entraID.userID=userPrincipalName

# Microsoft Entra ID attribute containing the Users Email address

entraID.userEmail=userPrincipalName

entraID.forename=givenName

entraID.surname=surname

entraID.employeeID=employeeId

entraID.title=jobTitle

entraID.location=officeLocation

entraID.company=companyName

entraID.department=department

entraID.address=streetAddress

entraID.mobile=mobilePhone

entraID.state=state

entraID.country=country

# ########################## Other Settings for Microsoft Entra ID ########################

# Set this value to the page size of Microsoft Entra ID search retrievals (default=500). It must be between 1 and 999 (both inclusive)

entraID.pageSize=500