-
Notifications
You must be signed in to change notification settings - Fork 225
/
MSFT_SqlSetup.config.ps1
153 lines (132 loc) · 5.12 KB
/
MSFT_SqlSetup.config.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
# This is used to make sure the integration test run in the correct order.
[Microsoft.DscResourceKit.IntegrationTest(OrderNumber = 1)]
param()
# Get a spare drive letter
$mockLastDrive = ((Get-Volume).DriveLetter | Sort-Object | Select-Object -Last 1)
$mockIsoMediaDriveLetter = [char](([int][char]$mockLastDrive) + 1)
$ConfigurationData = @{
AllNodes = @(
@{
NodeName = 'localhost'
InstanceName = 'DSCSQL2016'
Features = 'SQLENGINE,CONN,BC,SDK'
SQLCollation = 'Finnish_Swedish_CI_AS'
InstallSharedDir = 'C:\Program Files\Microsoft SQL Server'
InstallSharedWOWDir = 'C:\Program Files (x86)\Microsoft SQL Server'
UpdateEnabled = 'False'
SuppressReboot = $true # Make sure we don't reboot during testing.
ForceReboot = $false
ImagePath = "$env:TEMP\SQL2016.iso"
DriveLetter = $mockIsoMediaDriveLetter
PSDscAllowPlainTextPassword = $true
}
)
}
Configuration MSFT_SqlSetup_InstallSqlEngineAsSystem_Config
{
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
$SqlInstallCredential,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
$SqlServiceCredential,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
$SqlAgentServiceCredential
)
Import-DscResource -ModuleName 'PSDscResources'
Import-DscResource -ModuleName 'xStorage'
Import-DscResource -ModuleName 'SqlServerDSC'
node localhost {
xMountImage 'MountIsoMedia'
{
ImagePath = $Node.ImagePath
DriveLetter = $Node.DriveLetter
Ensure = 'Present'
}
xWaitForVolume WaitForMountOfIsoMedia
{
DriveLetter = $Node.DriveLetter
RetryIntervalSec = 5
RetryCount = 10
}
User 'CreateSqlServiceAccount'
{
Ensure = 'Present'
UserName = Split-Path -Path $SqlServiceCredential.UserName -Leaf
Password = $SqlServiceCredential
}
User 'CreateSqlAgentServiceAccount'
{
Ensure = 'Present'
UserName = Split-Path -Path $SqlAgentServiceCredential.UserName -Leaf
Password = $SqlAgentServiceCredential
}
User 'CreateSqlInstallAccount'
{
Ensure = 'Present'
UserName = Split-Path -Path $SqlInstallCredential.UserName -Leaf
Password = $SqlInstallCredential
}
Group 'AddSqlInstallAsAdministrator'
{
Ensure = 'Present'
GroupName = 'Administrators'
MembersToInclude = $SqlInstallCredential.UserName
}
User 'CreateSqlAdminAccount'
{
Ensure = 'Present'
UserName = Split-Path -Path $SqlAdministratorCredential.UserName -Leaf
Password = $SqlAdministratorCredential
}
WindowsFeature 'NetFramework45'
{
Name = 'NET-Framework-45-Core'
Ensure = 'Present'
}
SqlSetup 'Integration_Test'
{
InstanceName = $Node.InstanceName
Features = $Node.Features
SourcePath = "$($Node.DriveLetter):\"
BrowserSvcStartupType = 'Automatic'
SQLCollation = $Node.SQLCollation
SQLSvcAccount = $SqlServiceCredential
AgtSvcAccount = $SqlAgentServiceCredential
ASSvcAccount = $SqlServiceCredential
InstallSharedDir = $Node.InstallSharedDir
InstallSharedWOWDir = $Node.InstallSharedWOWDir
UpdateEnabled = $Node.UpdateEnabled
SuppressReboot = $Node.SuppressReboot
ForceReboot = $Node.ForceReboot
# This must be set if using SYSTEM account to install.
SQLSysAdminAccounts = @(
$SqlAdministratorCredential.UserName
<#
Must have permission to properties IsClustered and
IsHadrEnable for SqlAlwaysOnService.
#>
$SqlInstallCredential.UserName
)
DependsOn = @(
'[xMountImage]MountIsoMedia'
'[User]CreateSqlServiceAccount'
'[User]CreateSqlAgentServiceAccount'
'[User]CreateSqlInstallAccount'
'[Group]AddSqlInstallAsAdministrator'
'[User]CreateSqlAdminAccount'
'[WindowsFeature]NetFramework45'
)
}
}
}