Comment 11 for bug 997700

Revision history for this message
Adam Young (ayoung) wrote :

Id is a unique identifier, and if you do the defaul;t with Keystone, which is to let it set them, it will generate an UUID for the user. By default, the ID field of the user can be seen under the User object in keystone/identity/backends/ldap/core.py

class UserApi(common_ldap.BaseLdap, ApiShimMixin):
    DEFAULT_OU = 'ou=Users'
    DEFAULT_STRUCTURAL_CLASSES = ['person']
    DEFAULT_ID_ATTRIBUTE = 'cn'
    DEFAULT_OBJECTCLASS = 'inetOrgPerson'
    options_name = 'user'
    DEFAULT_ID_ATTRIBUTE = 'cn'

I am not sure where yours came from.