forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path6-MembersToIncludeAndExcludeInDatabaseRole.ps1
More file actions
36 lines (32 loc) · 1.13 KB
/
6-MembersToIncludeAndExcludeInDatabaseRole.ps1
File metadata and controls
36 lines (32 loc) · 1.13 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
<#
.EXAMPLE
This example shows how to do the following:
1. Ensure that the database role named ReportViewer is present in the AdventureWorks database on instance
sqltest.company.local\DSC
2. Ensure that users CONTOSO\Barbara and CONTOSO\Fred will always be members of the role
3. Ensure that the user CONSOSO\Intern1 will never be a member of the role
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential
)
Import-DscResource -ModuleName SqlServerDsc
node localhost
{
SqlDatabaseRole ReportViewer_IncludeAndExcludeRoleMembers
{
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
Database = 'AdventureWorks'
Name = 'ReportViewer'
MembersToInclude = @('CONTOSO\Barbara', 'CONTOSO\Fred')
MembersToExclude = @('CONTOSO\Intern1')
Ensure = 'Present'
PsDscRunAsCredential = $SqlAdministratorCredential
}
}
}