Skip to content

Commit

Permalink
Merge pull request #5517 from swisscom/5508-PPPowerAppsEnvironment
Browse files Browse the repository at this point in the history
change eq to match
  • Loading branch information
ykuijs authored Dec 10, 2024
2 parents f577bd4 + 6bf1b4c commit 6d04cd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
FIXES [#5296](https://github.com/microsoft/Microsoft365DSC/issues/5296)
* EXOTransportRule
* Fixed conditional logic for creation and update.
* PPPowerAppsEnvironmant
* Fixed [[#5508](https://github.com/microsoft/Microsoft365DSC/issues/5508)]
* IntuneTrustedRootCertificateIOS
* Initial release
* IntuneVPNConfigurationPolicyIOS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function Get-TargetResource

try
{
$environment = Get-AdminPowerAppEnvironment -ErrorAction Stop | Where-Object -FilterScript { $_.DisplayName -eq $DisplayName }
$environment = Get-AdminPowerAppEnvironment -ErrorAction Stop | Where-Object -FilterScript { $_.DisplayName -match $DisplayName }

if ($null -eq $environment)
{
Expand Down

0 comments on commit 6d04cd6

Please sign in to comment.