-
-
Notifications
You must be signed in to change notification settings - Fork 5
User Info Fetcher: Retrieve user info by sAMAccountName #702
Copy link
Copy link
Labels
customer-requestrelease-noteDenotes a PR that will be considered when it comes time to generate release notes.Denotes a PR that will be considered when it comes time to generate release notes.release/25.7.0type/feature-improvement
Metadata
Metadata
Assignees
Labels
customer-requestrelease-noteDenotes a PR that will be considered when it comes time to generate release notes.Denotes a PR that will be considered when it comes time to generate release notes.release/25.7.0type/feature-improvement
Type
Fields
Give feedbackNo fields configured for Enhancement.
Projects
StatusShow more project fields
Done
StatusShow more project fields
Done
Description
Allow the retrieval of user info by giving a sAMAccountName.
A customer handles technical and non-technical users differently in Active Directory. Technical users are e.g. created by the secret operator and have a meaningful User Principal Name, but their sAMAccountNames just consist of a prefix and a random hash. These technical users can be retrieved by
userInfoByUsername. The non-technical users have a meaningful sAMAccountName and the UPN contains some e-mail addresses. In this case, the customer wants to retrieve the user info by sAMAccountName or preferably by a custom filter query.Proposed change
A field
customUserQueryFilteris added to the CRD for the backendexperimentalActiveDirectory. If this field is set, then the given query is used whenuserInfoByUsernameis called.${USERNAME}will be replaced by the requested username.Edits:
${USER}renamed to${USERNAME}and description added.