Scenario - 10,000s of entitlements that need to be assigned via roles. I’ve tried adding variables to the entitlements part of a role but I am getting a 500 error. Is what I am trying to do even achievable?
Here is the snippet that it is failing on:
Blockquote
"entitlements": [
{
"type": "ENTITLEMENT",
"name": "$number $userType",
"number": {
"type": "identityAttribute",
"attributes": {
"name": "number"
}
},
"userType": {
"type": "identityAttribute",
"attributes": {
"name": "userType"
}
}
}
]
Blockquote