Skip to content

Commit

Permalink
Merge pull request #3497 from malauter/Fix-3496
Browse files Browse the repository at this point in the history
AADGroup: Fix issue setting MemberOf property
  • Loading branch information
NikCharlebois committed Jul 26, 2023
2 parents 584ccfe + 81f9484 commit 910a314
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change log for Microsoft365DSC

# UNRELEASED
* AADGroup
* Fix issue setting MemberOf property.
FIXES [#3496](https://github.com/microsoft/Microsoft365DSC/issues/3496)

# 1.23.719.1

* EXOSharedMailbox
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function Set-TargetResource
Add-M365DSCTelemetryEvent -Data $data
#endregion

$currentParameters = $PSBoundParameters
$currentParameters = [hashtable]$PSBoundParameters
$currentGroup = Get-TargetResource @PSBoundParameters
$currentParameters.Remove('ApplicationId') | Out-Null
$currentParameters.Remove('TenantId') | Out-Null
Expand Down

0 comments on commit 910a314

Please sign in to comment.