File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -87,16 +87,30 @@ You can use your own certificate to enable the HTTPS feature. This process is do
87
87
88
88
#### Register Azure Front Door
89
89
90
- Register the service principal for Azure Front Door as an app in your Azure Active Directory via PowerShell.
90
+ Register the service principal for Azure Front Door as an app in your Azure Active Directory using Azure PowerShell or Azure CLI .
91
91
92
92
> [ !NOTE]
93
93
> This action requires Global Administrator permissions, and needs to be performed only ** once** per tenant.
94
94
95
+ ##### Azure PowerShell
96
+
95
97
1 . If needed, install [ Azure PowerShell] ( /powershell/azure/install-az-ps ) in PowerShell on your local machine.
96
98
97
99
2 . In PowerShell, run the following command:
98
100
99
- ` New-AzADServicePrincipal -ApplicationId "ad0e1c7e-6d38-4ba4-9efd-0bc77ba9f037" -Role Contributor `
101
+ ``` azurepowershell-interactive
102
+ New-AzADServicePrincipal -ApplicationId "ad0e1c7e-6d38-4ba4-9efd-0bc77ba9f037" -Role Contributor
103
+ ```
104
+
105
+ ##### Azure CLI
106
+
107
+ 1. If need, install [Azure CLI](/cli/azure/install-azure-cli) on your local machine.
108
+
109
+ 2. In CLI, run the following command:
110
+
111
+ ```azurecli-interactive
112
+ az ad sp create --id ad0e1c7e-6d38-4ba4-9efd-0bc77ba9f037 --role Contributor
113
+ ```
100
114
101
115
#### Grant Azure Front Door access to your key vault
102
116
You can’t perform that action at this time.
0 commit comments