Hi, Matt.
A couple of questions.
1) Why your `gluuIpAddress` property is equal to ip address of your backend LDAP directory you run searches against here?
```
./ldapsearch -h 10.200.147.144 -b "ou=People,dc=gluuserver,dc=vsurv,dc=com" uid=*
./ldapsearch -h 10.200.147.144 -b "ou=People,dc=gluuserver,dc=vsurv,dc=com" '(&(uid=*)(objectclass=person))'
```
Do you run it on the same host as your Gluu Server?
2) Why do you specify "People" as "Object class" filter element on "Customer backend/key attributes" CR tab (judging by `"keyObjectClasses":["People"]` part of your configuration dump), while from the output of your search commands it seems your backend doesn't have such objectclass in its entries, only next 3:
```
objectClass: inetOrgPerson
objectClass: posixAccount
objectClass: top
```
I would suggest to use "inetOrgPerson" instead of "People" there.
Please let me know whether this helpful.