-
Notifications
You must be signed in to change notification settings - Fork 6
/
ConfigurationData.psd1
51 lines (51 loc) · 1.47 KB
/
ConfigurationData.psd1
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
@{
AllNodes = @(
@{
NodeName = '*'
PsDscAllowDomainUser = $true
PsDscAllowPlainTextPassword = $true
},
@{
NodeName = 'LABDC'
Purpose = 'Domain Controller'
WindowsFeatures = 'AD-Domain-Services'
}
)
NonNodeData = @{
DomainName = 'mytestlab.local'
AdGroups = 'Accounting','Information Systems','Executive Office','Janitorial Services'
OrganizationalUnits = 'Accounting','Information Systems','Executive Office','Janitorial Services'
AdUsers = @(
@{
FirstName = 'Katie'
LastName = 'Green'
Department = 'Accounting'
Title = 'Manager of Accounting'
}
@{
FirstName = 'Joe'
LastName = 'Blow'
Department = 'Information Systems'
Title = 'System Administrator'
}
@{
FirstName = 'Joe'
LastName = 'Schmoe'
Department = 'Information Systems'
Title = 'Software Developer'
}
@{
FirstName = 'Barack'
LastName = 'Obama'
Department = 'Executive Office'
Title = 'CEO'
}
@{
FirstName = 'Donald'
LastName = 'Trump'
Department = 'Janitorial Services'
Title = 'Custodian'
}
)
}
}