Skip to content

Commit 68079a9

Browse files
authored
Update how-to-configure-https-custom-domain.md
There were two errors in the PowerShell commands to register the service principal for Azure Front Door as an app in Microsoft Entra ID: `New-MgServicePrincipal -ApplicationId '205478c0-bd83-4e1b-a9d6-db63a3e1e1c8'` and `New-MgServicePrincipal -ApplicationId 'd4631ece-daab-479b-be77-ccb713491fc0'` `New-MgServicePrincipal` doesn't use `-ApplicationId` as parameter. The correct one is `AppId`
1 parent 5f0da35 commit 68079a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/frontdoor/standard-premium/how-to-configure-https-custom-domain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ Register the service principal for Azure Front Door as an app in your Microsoft
103103
Azure public cloud:
104104

105105
```azurepowershell-interactive
106-
New-MgServicePrincipal -ApplicationId '205478c0-bd83-4e1b-a9d6-db63a3e1e1c8'
106+
New-MgServicePrincipal -AppId '205478c0-bd83-4e1b-a9d6-db63a3e1e1c8'
107107
```
108108
109109
Azure government cloud:
110110
111111
```azurepowershell-interactive
112-
New-MgServicePrincipal -ApplicationId 'd4631ece-daab-479b-be77-ccb713491fc0'
112+
New-MgServicePrincipal -AppId 'd4631ece-daab-479b-be77-ccb713491fc0'
113113
```
114114
115115
# [Azure CLI](#tab/cli)

0 commit comments

Comments
 (0)