Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jan 3, 2023
1 parent 9a316f3 commit cabf05b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
* SCRetentionCompliancePolicy
* Forces changes to existing policies to be applied.
FIXES [#2719](https://github.com/microsoft/Microsoft365DSC/issues/2719)
* TeamsEmergencyCallingPolicy
* Fixes issue where CertificateThumbprint wasn't working because Credential was set to mandatory by the Test-TargetResource function.
FIXES [#2709](https://github.com/microsoft/Microsoft365DSC/issues/2709)
* TeamsEmergencyCallingRoutingPolicy
* Fixes issue where CertificateThumbprint wasn't working because Credential was set to mandatory by the Test-TargetResource function.
FIXES [#2709](https://github.com/microsoft/Microsoft365DSC/issues/2709)
* TeamsIPPhonePolicy
* Added descriptions to the resource parameters
* Limited possible parameter values where required
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ function Test-TargetResource
[System.String]
$Ensure = 'Present',

[Parameter(Mandatory = $true)]
[Parameter()]
[System.Management.Automation.PSCredential]
$Credential,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function Test-TargetResource
[System.String]
$Ensure = 'Present',

[Parameter(Mandatory = $true)]
[Parameter()]
[System.Management.Automation.PSCredential]
$Credential,

Expand Down

0 comments on commit cabf05b

Please sign in to comment.