forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-AddConnectPermission.ps1
37 lines (33 loc) · 1.08 KB
/
1-AddConnectPermission.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
<#
.EXAMPLE
This example will add connect permission to the credentials provided in $SqlServiceCredential
to the endpoint named 'DefaultMirrorEndpoint'.
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$SysAdminAccount,
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$SqlServiceCredential
)
Import-DscResource -ModuleName xSQLServer
node localhost
{
xSQLServerEndpointPermission SQLConfigureEndpointPermission
{
Ensure = 'Present'
NodeName = $Node.NodeName
InstanceName = $Node.SqlInstanceName
Name = 'DefaultMirrorEndpoint'
Principal = $SqlServiceCredential.UserName
Permission = 'CONNECT'
PsDscRunAsCredential = $SysAdminAccount
}
}
}