Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/#3885 aad conditional access policy #3953

Merged
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change log for Microsoft365DSC

# UNRELEASED
* AADConditionalAccessPolicy
* FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)]
* AADRoleSetting
* Export sorted by DisplayName for better comparison
* Enable Filter property to be used on export
Expand All @@ -27,6 +29,8 @@
* AADServicePrincipal
* Added support to define members.
FIXES [#3902](https://github.com/microsoft/Microsoft365DSC/issues/3902)
* AADConditionalAccessPolicy
NikCharlebois marked this conversation as resolved.
Show resolved Hide resolved
* FIXES [[#3885](https://github.com/microsoft/Microsoft365DSC/issues/3885)]
* EXOCASMailboxPlan
* Fixes an issue where we are not able to set the settings of a CAS
Mailbox Plan by specifying the Identity without the GUID in the name.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ function Set-TargetResource
{
$conditions.Applications.Add('IncludeApplications', $IncludeApplications)
}
if ($ExcludeApplications)
if ($currentParameters.ContainsKey("ExcludeApplications"))
sandrola marked this conversation as resolved.
Show resolved Hide resolved
{
$conditions.Applications.Add('ExcludeApplications', $ExcludeApplications)
}
Expand Down