From 270a8183ab378293519afcc117163188c5b29035 Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Thu, 24 Jul 2025 15:32:25 -0400 Subject: [PATCH 1/2] update metadata --- .../scaling-aspnet-apps/scaling-aspnet-apps.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md b/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md index c4d67b8bb406..dfd26799fe98 100644 --- a/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md +++ b/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md @@ -5,7 +5,7 @@ description: Learn how to horizontally scale ASP.NET Core apps on Azure and addr ms.author: alexwolf ms.custom: mvc uid: host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps -ms.date: 8/31/2022 +ms.date: 7/25/2025 --- # Deploying and scaling an ASP.NET Core app on Azure Container Apps @@ -255,6 +255,9 @@ The necessary Azure resources have been created. In this section the app code is The preceding changes allow the app to manage data protection using a centralized, scalable architecture. `DefaultAzureCredential` discovers the managed identity configurations enabled earlier when the app is redeployed. +> [!NOTE] +> The preceding example uses [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) to simplify authentication while developing apps that deploy to Azure by combining credentials used in Azure hosting environments with credentials used in local development. When moving to production, an alternative such as [ManagedIdentityCredential](/dotnet/api/azure.identity.managedidentitycredential) may be more appropriate. For more information, see [Authenticate Azure-hosted .NET apps to Azure resources using a system-assigned managed identity](/dotnet/azure/sdk/authentication/system-assigned-managed-identity). + Update the placeholders in `AzureURIs` section of the `appsettings.json` file to include the following: 1. Replace the `` placeholder with the name of the `scalablerazorstorageXXXX` account created. From 5fcb7e31b0cdce3df4157e289077b3db68399369 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 29 Jul 2025 12:00:14 -0400 Subject: [PATCH 2/2] Update aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md --- .../host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md b/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md index 5efd9e04aceb..14cdd5598b47 100644 --- a/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md +++ b/aspnetcore/host-and-deploy/scaling-aspnet-apps/scaling-aspnet-apps.md @@ -258,7 +258,7 @@ The necessary Azure resources have been created. In this section the app code is The preceding changes allow the app to manage data protection using a centralized, scalable architecture. `DefaultAzureCredential` discovers the managed identity configurations enabled earlier when the app is redeployed. > [!NOTE] -> The preceding example uses [DefaultAzureCredential](/dotnet/api/azure.identity.defaultazurecredential) to simplify authentication while developing apps that deploy to Azure by combining credentials used in Azure hosting environments with credentials used in local development. When moving to production, an alternative such as may be more appropriate. For more information, see [Authenticate Azure-hosted .NET apps to Azure resources using a system-assigned managed identity](/dotnet/azure/sdk/authentication/system-assigned-managed-identity). +> The preceding example uses to simplify authentication while developing apps that deploy to Azure by combining credentials used in Azure hosting environments with credentials used in local development. When moving to production, an alternative such as may be more appropriate. For more information, see [Authenticate Azure-hosted .NET apps to Azure resources using a system-assigned managed identity](/dotnet/azure/sdk/authentication/system-assigned-managed-identity). Update the placeholders in `AzureURIs` section of the `appsettings.json` file to include the following: