-
Notifications
You must be signed in to change notification settings - Fork 0
/
RunDsc.ps1
195 lines (163 loc) · 4.94 KB
/
RunDsc.ps1
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
Param
(
[Parameter(Mandatory=$true)]
[ValidateSet('HyperV', 'Azure')]
[String]$EnvironmentType,
[Switch]$Force
)
Import-Module DscExecution -Force
$ErrorActionPreference = 'Stop'
. ./Configuration/DomainController.ps1
. ./Configuration/FileServer.ps1
[DSCLocalConfigurationManager()]
configuration LCMConfig
{
Node $AllNodes.NodeName
{
Settings
{
ActionAfterReboot = 'ContinueConfiguration'
ConfigurationMode = 'ApplyOnly'
RebootNodeIfNeeded = $true
}
}
}
configuration DSCModules
{
Import-DscResource -ModuleName @{ModuleName='PowerShellModule'; ModuleVersion='0.3'}
Node $AllNodes.NodeName
{
PSModuleResource xActiveDirectory
{
Ensure = 'Present'
Module_Name = 'xActiveDirectory'
RequiredVersion = '2.16.0.0'
}
PSModuleResource xComputerManagement
{
Ensure = 'Present'
Module_Name = 'xComputerManagement'
RequiredVersion = '3.0.0.0'
}
PSModuleResource xPSDesiredStateConfiguration
{
Ensure = 'Present'
Module_Name = 'xPSDesiredStateConfiguration'
RequiredVersion = '7.0.0.0'
}
PSModuleResource xNetworking
{
Ensure = 'Present'
Module_Name = 'xNetworking'
RequiredVersion = '5.2.0.0'
}
PSModuleResource xDnsServer
{
Ensure = 'Present'
Module_Name = 'xDnsServer'
RequiredVersion = '1.6.0.0'
}
}
}
Write-Output 'Getting VM IP addresses...'
if ($EnvironmentType -eq 'HyperV')
{
$cacheLocation = "$PSScriptRoot\.vagrant\ips.json"
if (!(Test-Path $cacheLocation) -or $Force)
{
$ips = @{
'dc' = vagrant address dc
'fileserver1' = vagrant address fileserver-1
'fileserver2' = vagrant address fileserver-2
'fileserver3' = vagrant address fileserver-3
}
$ips | ConvertTo-Json | Out-File $cacheLocation -Encoding UTF8
}
else
{
$ips = Get-Content -Path $cacheLocation | ConvertFrom-Json
}
}
elseif ($EnvironmentType -eq 'Terraform')
{
$terraformOutput = (terraform output -json) | ConvertFrom-Json
}
$configurationData = @{
AllNodes = @(
@{
NodeName = $ips.dc
PSDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
}
)
}
# TODO: something to ensure the above modules are installed
$administratorCredential = New-PSCredential -Username vagrant -PlaintextPassword 'vagrant'
$domainAdministratorCredential = New-PSCredential -Username STORAGE\vagrant -PlaintextPassword 'vagrant'
Write-Output 'Configuring the local configuration manager on the domain controller...'
Invoke-DscConfiguration `
-Configuration (Get-Command LCMConfig) `
-ConfigurationData $configurationData `
-Credential $administratorCredential `
-Verbose
Invoke-DscConfiguration `
-Configuration (Get-Command DSCModules) `
-ConfigurationData $configurationData `
-Credential $administratorCredential `
-Verbose
Write-Output 'Configuring the domain controller...'
Invoke-DscConfiguration `
-Configuration (Get-Command DomainController) `
-ConfigurationData $configurationData `
-Credential $administratorCredential `
-ConfigurationParameters @{
'ComputerName' = 'dc1'
'DomainName' = 'STORAGE.com'
'DomainCredential' = $domainAdministratorCredential
} `
-Verbose
$fileServerConfigurationData = @{
AllNodes = @(
@{
NodeName = '*'
PSDscAllowPlainTextPassword = $true
PSDscAllowDomainUser = $true
},
@{
NodeName = $ips.fileserver1
DnsServerAddress = $ips.dc
DomainName = 'STORAGE.com'
DomainCredential = $domainAdministratorCredential
ComputerName = 'fs1'
},
@{
NodeName = $ips.fileserver2
DnsServerAddress = $ips.dc
DomainName = 'STORAGE.com'
DomainCredential = $domainAdministratorCredential
ComputerName = 'fs2'
},
@{
NodeName = $ips.fileserver3
DnsServerAddress = $ips.dc
DomainName = 'STORAGE.com'
DomainCredential = $domainAdministratorCredential
ComputerName = 'fs3'
}
)
}
Invoke-DscConfiguration `
-Configuration (Get-Command LCMConfig) `
-ConfigurationData $fileServerConfigurationData `
-Credential $administratorCredential `
-Verbose
Invoke-DscConfiguration `
-Configuration (Get-Command DSCModules) `
-ConfigurationData $fileServerConfigurationData `
-Credential $administratorCredential `
-Verbose
Invoke-DscConfiguration `
-Configuration (Get-Command FileServer) `
-ConfigurationData $fileServerConfigurationData `
-Credential $administratorCredential `
-Verbose