We would like to implement JDBC deprovisioning during ceritification user access remediation like if the source owner revokes any access item automatically that access shoule be revoked from the end system/application.
Hi Kalyana,
You can using JDBC provisioning rule for this,Refer the below document.
When the access it revoked it will disable the account in SailPoint which the call the provisioning rule, there you have to write your code inside disable operation which has to remove the user from database.
Thanks!!
Hi @naveenkarthikkrk thank you for your response.
If the user is having multiple accounts on the source with different set of entitlements but the campaign owner tries to revoke only one entitlement by maintainng other set of entitlements for the same user. How to handle this type of things when there is no need to disable the user? Coudl you share the sample SQL query for removal of the access from the database?
Hi @kalyannambi2010 ,
In this case you will need to get the native identity which is usually the account id, since you are having many accounts for the source each account will have different account id similarly in your database you will be having different data for each account ,the query will be DELETE FROM group_users
WHERE userid = kalyanana;
Thanks!!
Hi @naveenkarthikkrk and @ashutosh08 do we need to get complete table details from database team for removal of user access for which SQL query will be written?
There is no specific configuration you have to do for certification. You just need to configure your provisioning rule and other things will fall in place.
About operation, generally for access revocation your plan will be having modify operation for account request and your access will be present as attribute request with remove operation.
In our case, table is not fixed for removal of the access during UAR and how to write jdbc provisioning rule for removal of access/entitlement during UAR revocation?
In our case, table is not fixed for removal of the access during UAR and how to write jdbc provisioning rule for removal of access/entitlement during UAR revocation?
In our case, table is not fixed for removal of the access during UAR and how to write jdbc provisioning rule for removal of access/entitlement during UAR revocation?
@kalyannambi2010 you only need to ask your question once, and if someone is available, they will help you. The forum community is here to help when they are available and have something to contribute to the topic. If you need more immediate help, consider reaching out to Expert Services or Professional services offered by SailPoint, or one of the many Partners.
For your issue, i don’t understand what you mean by “your table is not fixed for removal of access”. Could you explain what you mean by this?
If the issue is that you don’t have the removal logic configured in the JDBC Provisioning Rule, then I would start by reviewing the documentation for that rule and the API for loading it. I would then work with your DB team to get the proper Stored Procedures or query for the removal of the entitlements. Once you have that, you can start constructing you JDBC Provisioning Rule’s modify and/or disable operations with beanshell to handle the removal of the entitlements. What some of the other community members have mentioned is that you may need to handle the removal with the modify operation.