-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue Adding Users #861
Comments
Can you provide more detail around how each of these sync processes are set up? Are both sync processes syncing from LDAP to the Admin Console? |
Sure, I'll provide some more detail. Let me know if you need anything else. Process One runs on a CI/CD pipeline. It connects with LDAP for directory and the new Oauth server to server for connecting to Admin Console. For LDAP, the only setting out of the ordinary is we use an
The only thing that made it work was setting
It seemed to me that the tool should add users without having to specify a group to add them to. Our second process has no issues. It is set up to use a file connector instead of LDAP, and it adds and removes users from a couple of user groups that provide products. |
groups:
- directory_group: {our_ldap_group}
adobe_groups: This will create the users without assigning them to any target group. |
Ah I see, that's very helpful. Thank you! Last question (I think). I just want to match all users, is there any kind of selector or value that would do that? Or do I just have to find/create an LDAP group that would contain all the users. I see you can use regex for "additional_groups" but that doesn't seem to work for the initial directory_group value. |
You're using the option |
I would need more information to know what is happening. There are several potentially valid reasons why querying all users does not sync all of those users. For example, you may be querying users that are missing email address or another vital piece of information. But the UST does allow you to sync all users without assigning any target groups. The I would need to take a look at a full log file (with the log level set to debug) to have a better idea of what is happening. |
Our organization has two separates processes that run to sync Adobe accounts and licensed group memberships respectively. Process two is responsible for getting license entitlements and adding users to a User Group that provides licensing. Process one is supposed to simply add and remove user accounts based on their affiliation with our organization.
I have run into an issue with process one. It will remove users just fine, but it isn't creating accounts for users. We use LDAP for the connector. I tested out if we add users to a default group, and it looks like it would create an account of new users if they are being added to a group, but NOT if they are not being added to a group.
Is there a way to configure UST to create accounts in our Adobe portal WITHOUT having to also add them to a group?
The text was updated successfully, but these errors were encountered: