In short, no, using one idp attribute to map to many groups is not possible, example:
-
To map the same group to more than one Business Units is not possible, since the groups are keys values and unique, they can’t be duplicated to allow more than one IDP attribute.
A valid configuration would be:
businessUnitsMapping = [
'Your_group1': 'testers',
'Your_group2': 'managers',
'Your_group3': 'developers'
]
But the following configuration would not be possible:
businessUnitsMapping = [
'Your_group1': 'testers',
'Your_group1': 'managers',
'Your_group1': 'developers'
]
Comments
0 comments
Article is closed for comments.