Hi everyone, I'm trying to ingest azure org data for a specific group into my catalog. I haven't been able to successfully authenticate. Here is a snippet of my app-config.yaml. I'm using one of the built in resolvers and I'm getting the following error after signing in with the oauth flow Login failed; caused by Error: Failed to sign-in, unable to resolve user identity I've also enabled the app permissions GroupMember.Read.All & User.Read.All which have been granted admin consent. Anyone have any guidance on what I may be doing wrong? I've tested the graph queries in postman and everything seems to be correct.
//app-config.yaml
...
auth:
environment: development
providers:
microsoft:
development:
clientId: REDACTED
clientSecret: REDACTED
tenantId: REDACTED
domainHint: REDACTED
# additionalScopes:
# - Mail.Send
signIn:
resolvers:
# typically you would pick one of these
- resolver: emailMatchingUserEntityProfileEmail
# - resolver: emailLocalPartMatchingUserEntityName
# - resolver: emailMatchingUserEntityAnnotation
guest: {}
catalog:
providers:
microsoftGraphOrg:
providerId:
target: https://graph.microsoft.com/v1.0
authority: https://login.microsoftonline.com
tenantId: REDACTED
clientId: REDACTED
clientSecret: REDACTED
queryMode: advanced # basic | advanced
user:
#expand: manager
loadPhotos: false
select: ['id', 'displayName', 'mail']
# userGroupMember:
group:
filter: id eq '<group-id>'
schedule:
frequency: PT1H
timeout: PT3M