I have an app where I have to force some group of users to reset passwords after some time, but not all of them. Is it possible to create a policy per user/group with an Expire password?
I tried so many different ways to handle it in a different way (thinking to create a custom extension too), but nothing help :/
Is it possible to add something as a Keycloak script on the Client level, where I can check a specific user or group and call trigger for resetting the password?
And another question: Is it possible to limit access by IP address (Again with Keycloack javascript or any other way) somehow?
Password polices in Keycloak are applied at the Realm level, to all the users on that Realm, not to the group level. So unless, you extend Keycloak functionality in your own I think you are out of luck.
There was a feature request for that functionality, but it was deferred, and AFAIK is not on the latest Keycloak release. So another option would be to use a different layer on top of Keycloak that would filter IPs based on some white list of IPs.