Skip to content

Commit

Permalink
Fix review comments at r1
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Dec 1, 2017
1 parent b2e93fb commit 6825603
Show file tree
Hide file tree
Showing 2 changed files with 142 additions and 140 deletions.
18 changes: 9 additions & 9 deletions DSCResources/MSFT_SqlDatabaseRole/MSFT_SqlDatabaseRole.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ function Get-TargetResource
}

$returnValue = @{
Ensure = $ensure
Name = $Name
ServerName = $ServerName
Ensure = $ensure
Name = $Name
ServerName = $ServerName
InstanceName = $InstanceName
Database = $Database
Role = $grantedRole
Database = $Database
Role = $grantedRole
}

$returnValue
Expand Down Expand Up @@ -340,10 +340,10 @@ function Test-TargetResource

$getTargetResourceParameters = @{
InstanceName = $PSBoundParameters.InstanceName
ServerName = $PSBoundParameters.ServerName
Role = $PSBoundParameters.Role
Database = $PSBoundParameters.Database
Name = $PSBoundParameters.Name
ServerName = $PSBoundParameters.ServerName
Role = $PSBoundParameters.Role
Database = $PSBoundParameters.Database
Name = $PSBoundParameters.Name
}

$getTargetResourceResult = Get-TargetResource @getTargetResourceParameters
Expand Down
Loading

0 comments on commit 6825603

Please sign in to comment.