From 25edf44893553dc1457850186f4eb5fe6b49fd84 Mon Sep 17 00:00:00 2001 From: Dan Moseley Date: Wed, 30 Oct 2024 13:48:06 -0600 Subject: [PATCH] fix typo in code --- .../AzureContainerAppsInfrastructure.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppsInfrastructure.cs b/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppsInfrastructure.cs index 243b1d561dc..b89800bac53 100644 --- a/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppsInfrastructure.cs +++ b/src/Aspire.Hosting.Azure.AppContainers/AzureContainerAppsInfrastructure.cs @@ -153,7 +153,7 @@ public void BuildContainerApp(AzureResourceInfrastructure c) }; // TODO: Add managed identities only when required - AddManagedIdentites(containerAppResource); + AddManagedIdentities(containerAppResource); containerAppResource.EnvironmentId = containerAppIdParam; @@ -857,7 +857,7 @@ private void AddSecrets(ContainerAppConfiguration config) } } - private void AddManagedIdentites(ContainerApp app) + private void AddManagedIdentities(ContainerApp app) { if (_managedIdentityIdParameter is null) {