Skip to content

Commit

Permalink
Merge pull request #2739 from NikCharlebois/FIX-#2710
Browse files Browse the repository at this point in the history
FIX #2710
  • Loading branch information
NikCharlebois authored Jan 3, 2023
2 parents 9a316f3 + 7c0dc5e commit aeec3c9
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 [#2710](https://github.com/microsoft/Microsoft365DSC/issues/2710)
* TeamsEmergencyCallingRoutingPolicy
* Fixes issue where CertificateThumbprint wasn't working because Credential was set to mandatory by the Test-TargetResource function.
FIXES [#2710](https://github.com/microsoft/Microsoft365DSC/issues/2710)
* 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 aeec3c9

Please sign in to comment.