2023-08-28 22:16:08 +00:00
|
|
|
# The root object of the tree, all entries will branch off this one:
|
|
|
|
dn: dc=example,dc=test
|
|
|
|
# DN is formed from `example.test` DNS labels:
|
|
|
|
# NOTE: This is just a common convention (not dependent on hostname or any external config)
|
2023-08-22 09:38:25 +00:00
|
|
|
objectClass: dcObject
|
2023-08-28 22:16:08 +00:00
|
|
|
# Must reference left most component:
|
|
|
|
dc: example
|
|
|
|
# It's required to use an `objectClass` that implements a "Structural Class":
|
2023-08-22 09:38:25 +00:00
|
|
|
objectClass: organization
|
2023-08-28 22:16:08 +00:00
|
|
|
# Value is purely descriptive, not important to tests:
|
2023-08-22 09:38:25 +00:00
|
|
|
o: DMS Test
|
|
|
|
|
|
|
|
# User accounts will belong to this subtree:
|
2023-08-28 22:16:08 +00:00
|
|
|
dn: ou=users,dc=example,dc=test
|
2016-10-30 13:11:36 +00:00
|
|
|
objectClass: organizationalUnit
|
2023-08-28 22:16:08 +00:00
|
|
|
ou: users
|