Skip to content

Commit b7c1991

Browse files
authored
Merge pull request #17692 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-stack-docs (branch main)
2 parents 2de5136 + b2a03d6 commit b7c1991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure-stack/operator/graph-api-retirement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Write-Host "Found '$($applications.Count)' total applications in directory '$ten
5555
5656
# Find all the unique deployment GUIDs, each one representing an Azure Stack deployment or registration in the current directory
5757
$deploymentGuids = $applications.IdentifierUris |
58-
Where-Object { $_ -like 'https://management.*' -or $_ -like 'https://adminmanagement.*' -or $_ -like 'https://azurebridge.*' } |
58+
Where-Object { $_ -like 'https://management.*' -or $_ -like 'https://adminmanagement.*' -or $_ -like 'https://azurebridge*' } |
5959
ForEach-Object { "$_".Split('/')[3] } |
6060
Select-Object -Unique
6161
Write-Host "Found '$($deploymentGuids.Count)' total Azure Stack deployments or registrations in directory '$tenantId'"
@@ -78,7 +78,7 @@ foreach ($application in $applications)
7878
$azureStackLegacyGraphApplications = $azureStackApplications |
7979
Where-Object {
8080
($_.RequiredResourceAccess.ResourceAppId -contains '00000002-0000-0000-c000-000000000000') -or
81-
($_.IdentifierUris | Where-Object { $_ -like 'https://azurebridge.*' }) }
81+
($_.IdentifierUris | Where-Object { $_ -like 'https://azurebridge*' }) }
8282
8383
# Find which of those applications need to have their authentication behaviors patched to allow access to legacy Graph
8484
$azureStackLegacyGraphApplicationsToUpdate = $azureStackLegacyGraphApplications |

0 commit comments

Comments
 (0)