Hi, I’m running into an issue where my Services Standard Before Provisioning Rule is not executing. Below is the rule:
"op": "add",
"path": "/connectorAttributes/cloudServicesIDNSetup",
"value": {
"eventConfigurations": [
{
"eventActions": [
{
"Action":"ChangeOperation",
"Attribute": null,
"Value":"Enable"
},
{
"Action": "RemoveEntitlements",
"Attribute": "groups",
"Value": null
},
{
"Action": "RemoveEntitlements",
"Attribute": "servicePrincipals",
"Value": null
}
],
"Identity Attribute Triggers": [
{
"Attribute": "cloudLifecycleState",
"Value": "recentInactive",
"Operation": "eq"
}
],
"Operation": "Disable"
}
]
}
The rule seems to not be recognized by IDN as the ChangeOperation is ignored and no entitlements are even requested to be removed from the user’s account in Azure AD. Azure AD is configured to be disabled upon entering the recentInactive lifecycle state within the id profile.
Any ideas?


