You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-foundry/model-inference/includes/configure-entra-id/about-credentials.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,4 @@ When deployed to Azure, this same code can also authenticate your app to other A
13
13
* A specific `TokenCredential` implementation, such as `ManagedIdentityCredential`. See the [Derived list for options](/dotnet/api/azure.core.tokencredential#definition).
14
14
* A pared-down `ChainedTokenCredential` implementation optimized for the Azure environment in which your app runs. `ChainedTokenCredential` essentially creates a specific allow-list of acceptable credential options, such as `ManagedIdentity` for production and `VisualStudioCredential` for development.
15
15
16
-
*If your application in running on Azure, configure system-assigned or user-assigned managed identities to the resources where your code is running and configure Microsoft Entra ID access to those specific identities.
16
+
*Configure system-assigned or user-assigned managed identities to the Azure resources where your code is running if possible. Configure Microsoft Entra ID access to those specific identities.
Follow these steps to configure Microsoft Entra ID for inference in you Azure AI Services resource:
26
+
Follow these steps to configure Microsoft Entra ID for inference in your Azure AI Services resource:
27
27
28
28
29
29
1. Log in into your Azure subscription:
@@ -32,7 +32,7 @@ Follow these steps to configure Microsoft Entra ID for inference in you Azure AI
32
32
az login
33
33
```
34
34
35
-
2. If you have more than 1 subscription, select the subscription where your resource is located:
35
+
2. If you have more than one subscription, select the subscription where your resource is located:
36
36
37
37
```azurecli
38
38
az account set --subscription "<subscription-id>"
@@ -80,12 +80,12 @@ Follow these steps to configure Microsoft Entra ID for inference in you Azure AI
80
80
8. The selected user can now use Microsoft Entra ID for inference.
81
81
82
82
> [!TIP]
83
-
> Keep in mind that Azure role assignments may take up to five minutes to propagate. When working with security groups, adding or removing users from the security group propagates immediately.
83
+
> Keep in mind that Azure role assignments may take up to five minutes to propagate. Adding or removing users from a security group propagates immediately.
84
84
85
85
86
86
## Use Microsoft Entra ID in your code
87
87
88
-
Once Microsoft Entra ID has been configured in your resource, you need to update your code to use it when consuming the inference endpoint. The following example shows how to use a chat completions model:
88
+
Once Microsoft Entra ID is configured in your resource, you need to update your code to use it when consuming the inference endpoint. The following example shows how to use a chat completions model:
0 commit comments