Skip to content

Commit b81bcc8

Browse files
Merge pull request #227371 from jaganth/patch-4
Update event-grid-powershell-webhook-secure-delivery-azure-ad-app.md
2 parents 9ab9e45 + 2823392 commit b81bcc8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

articles/event-grid/scripts/event-grid-powershell-webhook-secure-delivery-azure-ad-app.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ try {
4747
}
4848
4949
# Creates Azure Event Grid Azure AD Application if not exists
50+
# You don't need to modify this id
51+
# But Azure Event Grid Azure AD Application Id is different for different clouds
5052
51-
$eventGridAppId = "4962773b-9cdb-44cf-a8bf-237846a00ab7" # You don't need to modify this id
53+
$eventGridAppId = "4962773b-9cdb-44cf-a8bf-237846a00ab7" # Azure Public Cloud
54+
# $eventGridAppId = "54316b56-3481-47f9-8f30-0300f5542a7b" # Azure Government Cloud
5255
$eventGridRoleName = "AzureEventGridSecureWebhookSubscriber" # You don't need to modify this role name
5356
$eventGridSP = Get-AzureADServicePrincipal -Filter ("appId eq '" + $eventGridAppId + "'")
5457
if ($eventGridSP -match "Microsoft.EventGrid")

0 commit comments

Comments
 (0)