-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_filter_directory.yaml
More file actions
54 lines (47 loc) · 1.37 KB
/
Copy pathtest_filter_directory.yaml
File metadata and controls
54 lines (47 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
directory:
base_dn: "dc=test,dc=com"
entries:
- dn: "dc=test,dc=com"
objectClass: ["top", "domain"]
dc: "test"
- dn: "ou=people,dc=test,dc=com"
objectClass: ["top", "organizationalUnit"]
ou: "people"
- dn: "cn=John Smith,ou=people,dc=test,dc=com"
objectClass: ["top", "person", "inetOrgPerson"]
cn: "John Smith"
sn: "Smith"
givenName: "John"
mail: "john.smith@test.com"
uid: "jsmith"
userPassword: "secret123"
- dn: "cn=Jane Doe,ou=people,dc=test,dc=com"
objectClass: ["top", "person", "inetOrgPerson"]
cn: "Jane Doe"
sn: "Doe"
givenName: "Jane"
mail: "jane.doe@test.com"
uid: "jdoe"
userPassword: "secret456"
- dn: "cn=Johnny Johnson,ou=people,dc=test,dc=com"
objectClass: ["top", "person", "inetOrgPerson"]
cn: "Johnny Johnson"
sn: "Johnson"
givenName: "Johnny"
mail: "johnny.j@test.com"
uid: "jjohnson"
userPassword: "secret789"
- dn: "cn=Test User (with parens),ou=people,dc=test,dc=com"
objectClass: ["top", "person", "inetOrgPerson"]
cn: "Test User (with parens)"
sn: "User"
givenName: "Test"
description: "Test (with parens)"
uid: "testuser"
- dn: "cn=Admin User,ou=people,dc=test,dc=com"
objectClass: ["top", "person", "inetOrgPerson"]
cn: "Admin User"
sn: "User"
givenName: "Admin"
uid: "admin"
userPassword: "adminpass"