Skip to content

Commit 15710de

Browse files
committed
yay!
1 parent db63f40 commit 15710de

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/ai-services/translator/how-to/microsoft-entra-id-auth.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,34 +54,34 @@ Before you get started, you need an Azure account and an Azure AI services subsc
5454

5555
To use Microsoft Entra authentication, key-based (local) authentication must be turned off. Once key access is disabled, Microsoft Entra ID becomes the sole authorization method. Your organization can choose to deactivate local authentication and mandate Microsoft Entra for Azure AI resources. If not, you can disable key authentication for specific resources following these steps in `PowerShell`:
5656

57-
* **Connect to Azure**
57+
1. **Connect to Azure**
5858

5959
```powershell
6060
Connect-AzAccount
6161
```
6262

63-
* **Verify local authentication status**
63+
1. **Verify local authentication status**
6464

65-
```powershell
66-
Get-AzCognitiveServicesAccount
67-
```
65+
```powershell
66+
Get-AzCognitiveServicesAccount
67+
```
6868

69-
* **Check that the property `DisableLocalAuth` is set to `$true` (local authentication *is* disabled)**
69+
1. **Check that the property `DisableLocalAuth` is set to `$true` (local authentication *is* disabled)**
7070

7171
```powershell
7272
Get-AzCognitiveServicesAccount -ResourceGroupName "my-resource-group" -Name "my-resource-name"
7373
```
7474

7575
If the `DisableLocalAuth` is blank or set to False, you must set it to $true.
7676

77-
* **Disable local authentication**
77+
1. **Disable local authentication**
7878

7979
```powershell
8080
Set-AzCognitiveServicesAccount -ResourceGroupName "my-resource-group" -Name "my-resource-name" -DisableLocalAuth $true
8181
8282
```
8383

84-
* You can check once more to ensure that local authentication is disabled using the [`Get-AzCognitiveServicesAccount`](/powershell/module/az.cognitiveservices/get-azcognitiveservicesaccount) cmdlet. A value of True means local authentication is disabled.
84+
You can check once more to ensure that local authentication is disabled using the [`Get-AzCognitiveServicesAccount`](/powershell/module/az.cognitiveservices/get-azcognitiveservicesaccount) cmdlet. A value of True means local authentication is disabled.
8585

8686
## Register an identity application with Microsoft Entra ID
8787

@@ -193,7 +193,7 @@ Role-based access control (Azure `RBAC`) is a security principal that enables yo
193193

194194
1. Choose **`Select members`**.
195195

196-
:::image type="content" source="../media/entra-id/add-members.png" alt-text="Screenshot of add role assignment members window.":::
196+
:::image type="content" source="../media/entra-id/add-members.png" alt-text="Screenshot of add role assignment members window.":::
197197

198198
1. In the window that opens, type the name of your registered application in the search box (for example, text-translation-app). Select your application and choose the `Select` button.
199199

0 commit comments

Comments
 (0)