Use Case
Access can be assigned to an account in SSM via multiple ways, either via SSM, directly through the application on the target system or via other IAM platforms that may have previously been used. All access or entitlements assigned to accounts outside Saviynt are called Out of Band Entitlements or Out Of Band Access. The report below can be used to leverage identifying Out of Band Entitlements in SSM via analytics.
Pre-requisites
Out-Of-Band Entitlements should be present in Saviynt.
Applicable Version(s)
All
Solution
Please configure an analytical report using the query given below:
SELECT u.username, et.entitlementname, ev.entitlement_value, ep.endpointnameFROM users u, user_accounts ua, accounts a, account_entitlements1 ae1, entitlement_values ev, entitlement_types et, endpoints epWHERE u.userkey = ua.userkeyAND a.accountkey = ua.accountkeyAND a.accountkey = ae1.accountkeyAND ae1.entitlement_valuekey = ev.entitlement_valuekeyAND ep.endpointkey = a.endpointkeyAND ev.entitlementtypekey = et.entitlementtypekeyAND ep.endpointkey IN (pleaseINSERT comma-seperated endpointkeys here)AND ae1.arstaskkey IS NULL;