
gqmra (gqmra) asked a question.
Hello,
I added two groups to Group Attribute Statements sections in General tab for SSO with my app. I see fname/lname that I populated in Attribute Statements section in Assertion of the Saml but don't see the Group Attribute Statements part in saml.
The preview does show Group Attribute Statement part but the actual Saml in browser is not showing that section in Saml.
Preview in OKTA
But actual Saml in Saml-tracker

Try by change "filter" condition in the saml app
i guess , filter would be 'contains' or 'startswith' in this case.
incase if you need all groups - then use regex :- .*
In regular expressions, an asterisk matches zero or more instances of the previous character, so it's not reliable to use it as a wildcard character like you do in most shells. To return group names containing SUPER, you can just enter SUPER and it should return every group that contains that string anywhere in the name. No asterisks needed.
Resources
RegexLib.com - quick reference sheet for regex
Regular Expressions 101 - great site for testing your regex