I have the following claim on my AD FS server:
LDAP Attribute:
Token-Groups - Unqualified Names
Outgoing Claim Type: Group
Which returns in my Saml Response the groups that the user is a part of:
<AttributeStatement>
<Attribute Name="http://schemas.xmlsoap.org/claims/Group">
<AttributeValue>Domain Users</AttributeValue>
<AttributeValue>AWS-Production</AttributeValue>
<AttributeValue>AWS-Dev</AttributeValue>
</Attribute>
</AttributeStatement>
How can I map these groups to custom cognito user pool attributes?
I have tried mapping with the SAML Attribute name of: http://schemas.xmlsoap.org/claims/Group and http://schemas.microsoft.com/ws/2008/06/identity/claims/groups
But the attributes do not map over to Cognito. I have tried mapping my custom to other attributes like email address and have been successful, its just with groups that I have not been able to successfully map over the values.
P.S. Sorry I would have posted photos documenting the process in more detail, but imgur is blocked at my work.