diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c48ff3231..5a853f9d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -78,6 +78,8 @@ * Initial release. * SCPolicyConfig * Fixed an issue extracting empty groups properties. +* TeamsMeetingPolicy + * FIXES #5442(https://github.com/microsoft/Microsoft365DSC/issues/5442) * TeamsUpdateManagementPolicy * Added conversion of the UpdateTimeOfDay parameter to the local culture format so that the comparison will work consistently. diff --git a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 index 3f2224c6af..d23686aa96 100644 --- a/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 +++ b/Modules/Microsoft365DSC/DSCResources/MSFT_TeamsMeetingPolicy/MSFT_TeamsMeetingPolicy.psm1 @@ -473,6 +473,12 @@ function Get-TargetResource TeamsCameraFarEndPTZMode = $policy.TeamsCameraFarEndPTZMode WhoCanRegister = $policy.WhoCanRegister Ensure = 'Present' + Credential = $Credential + ApplicationId = $ApplicationId + TenantId = $TenantId + CertificateThumbprint = $CertificateThumbprint + ManagedIdentity = $ManagedIdentity.IsPresent + AccessTokens = $AccessTokens } } catch