Skip to content

Commit a330e0c

Browse files
Apply suggestions from code review
Co-authored-by: Scott Addie <[email protected]>
1 parent 9c4c531 commit a330e0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/azure/sdk/authentication/authentication-best-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Authentication best practices with the Azure Identity library for .NET
3-
description: This article describes authentication best practices to follow when using the Azure Identity library.
3+
description: This article describes authentication best practices to follow when using the Azure Identity library for .NET.
44
ms.topic: conceptual
55
ms.date: 01/15/2025
66
---

docs/azure/sdk/includes/default-azure-credential-usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ For example, consider the following hypothetical sequence of events:
55

66
1. An organization's security team mandates all apps use managed identity to authenticate to Azure resources.
77
1. For months, a .NET app hosted on an Azure Virtual Machine (VM) successfully uses `DefaultAzureCredential` to authenticate via managed identity.
8-
1. Without telling the support team, a developer installs the Azure CLI on that VM and runs the `az login` command to sign-in to Azure.
8+
1. Without telling the support team, a developer installs the Azure CLI on that VM and runs the `az login` command to authenticate to Azure.
99
1. Due to a separate configuration change in the Azure environment, authentication via the original managed identity unexpectedly begins to fail silently.
10-
1. `DefaultAzureCredential` skips the failed `ManagedIdentityCredential` and searches for the next available credential, which is the Azure CLI credentials.
10+
1. `DefaultAzureCredential` skips the failed `ManagedIdentityCredential` and searches for the next available credential, which is `AzureCliCredential`.
1111
1. The team is unaware of the hidden authentication failure because logging is disabled by default.
1212

1313
`DefaultAzureCredential` also introduces the following challenges in some scenarios:

0 commit comments

Comments
 (0)