Skip to content

Commit 322e124

Browse files
committed
fix: review
1 parent 6604414 commit 322e124

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

articles/ai-foundry/model-inference/includes/configure-entra-id/about-credentials.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
---
2+
manager: nitinme
3+
author: mrbullwinkle
4+
ms.author: fasantia
5+
ms.service: azure-ai-model-inference
6+
ms.date: 01/23/2025
7+
ms.topic: include
8+
---
9+
110
### Options for credential when using Microsoft Entra ID
211

312
`DefaultAzureCredential` is an opinionated, ordered sequence of mechanisms for authenticating to Microsoft Entra ID. Each authentication mechanism is a class derived from the `TokenCredential` class and is known as a credential. At runtime, `DefaultAzureCredential` attempts to authenticate using the first credential. If that credential fails to acquire an access token, the next credential in the sequence is attempted, and so on, until an access token is successfully obtained. In this way, your app can use different credentials in different environments without writing environment-specific code.
@@ -11,6 +20,6 @@ When deployed to Azure, this same code can also authenticate your app to other A
1120
* Use deterministic credentials in production environments: Strongly consider moving from `DefaultAzureCredential` to one of the following deterministic solutions on production environments:
1221

1322
* A specific `TokenCredential` implementation, such as `ManagedIdentityCredential`. See the [Derived list for options](/dotnet/api/azure.core.tokencredential#definition).
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.
23+
* A pared-down `ChainedTokenCredential` implementation optimized for the Azure environment in which your app runs. `ChainedTokenCredential` essentially creates a specific allowlist of acceptable credential options, such as `ManagedIdentity` for production and `VisualStudioCredential` for development.
1524

1625
* 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.

articles/ai-foundry/model-inference/includes/configure-entra-id/intro.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
---
2+
manager: nitinme
3+
author: mrbullwinkle
4+
ms.author: fasantia
5+
ms.service: azure-ai-model-inference
6+
ms.date: 01/23/2025
7+
ms.topic: include
8+
---
9+
110
[!INCLUDE [Feature preview](../../../../ai-studio/includes/feature-preview.md)]
211

312
Models deployed to Azure AI model inference in Azure AI Services support key-less authorization using Microsoft Entra ID. Key-less authorization enhances security, simplifies the user experience, reduces operational complexity, and provides robust compliance support for modern development. It makes it a strong choice for organizations adopting secure and scalable identity management solutions.

articles/ai-foundry/model-inference/includes/configure-entra-id/portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ zone_pivot_groups: azure-ai-models-deployment
1212

1313
## Configure Microsoft Entra ID for inference
1414

15-
Follow these steps to configure Microsoft Entra ID for inference if you're using **projects or hubs** in Azure AI Foundry. If your are not using them, Start from step 5 using the Azure portal.
15+
Follow these steps to configure Microsoft Entra ID for inference:
1616

1717
1. Go to the [Azure portal](https://portal.azure.com) and locate the Azure AI Services resource you're using. If you're using Azure AI Foundry with projects or hubs, you can navigate to it by:
1818

0 commit comments

Comments
 (0)