Skip to content

Commit 11785d0

Browse files
Merge pull request #276576 from maud-lv/ml-acrefreshmai24
App Configuration freshness
2 parents 3c1172a + fa6cadb commit 11785d0

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

articles/azure-app-configuration/overview-managed-identity.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ title: Configure managed identities with Azure App Configuration
33
description: Learn how managed identities work in Azure App Configuration and how to configure a managed identity
44
author: maud-lv
55
ms.topic: article
6-
ms.date: 02/25/2020
6+
ms.date: 05/24/2024
77
ms.author: malev
8-
ms.reviewer: lcozzens
98
ms.service: azure-app-configuration
109
ms.custom: devx-track-azurecli
1110
---
1211

1312
# How to use managed identities for Azure App Configuration
1413

15-
This topic shows you how to create a managed identity for Azure App Configuration. A managed identity from Microsoft Entra ID allows Azure App Configuration to easily access other Microsoft Entra protected resources. The identity is managed by the Azure platform. It does not require you to provision or rotate any secrets. For more about managed identities in Microsoft Entra ID, see [Managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md).
14+
This article shows you how to create a managed identity for Azure App Configuration. A managed identity from Microsoft Entra ID allows Azure App Configuration to easily access other Microsoft Entra protected resources. The identity is managed by the Azure platform. It doesn't require you to provision or rotate any secrets. For more about managed identities in Microsoft Entra ID, see [Managed identities for Azure resources](../active-directory/managed-identities-azure-resources/overview.md).
1615

1716
Your application can be granted two types of identities:
1817

@@ -31,7 +30,7 @@ To set up a managed identity using the Azure CLI, use the [az appconfig identity
3130
- Use the embedded Azure Cloud Shell via the "Try It" button, located in the top-right corner of each code block below.
3231
- [Install the latest version of Azure CLI](/cli/azure/install-azure-cli) (2.1 or later) if you prefer to use a local CLI console.
3332

34-
The following steps will walk you through creating an App Configuration store and assigning it an identity using the CLI:
33+
The following steps walk you through creating an App Configuration store and assigning it an identity using the CLI:
3534

3635
1. If you're using the Azure CLI in a local console, first sign in to Azure using [az login]. Use an account that is associated with your Azure subscription:
3736

@@ -67,7 +66,7 @@ To set up a managed identity using the Azure CLI, use the [az appconfig identity
6766
- Use the embedded Azure Cloud Shell via the "Try It" button, located in the top-right corner of each code block below.
6867
- [Install the latest version of Azure CLI](/cli/azure/install-azure-cli) (2.0.31 or later) if you prefer to use a local CLI console.
6968
70-
The following steps will walk you through creating a user-assigned identity and an App Configuration store, then assigning the identity to the store using the CLI:
69+
The following steps walk you through creating a user-assigned identity and an App Configuration store, then assigning the identity to the store using the CLI:
7170
7271
1. If you're using the Azure CLI in a local console, first sign in to Azure using [az login]. Use an account that is associated with your Azure subscription:
7372
@@ -104,6 +103,3 @@ A system-assigned identity can be removed by disabling the feature by using the
104103
105104
> [!div class="nextstepaction"]
106105
> [Create an ASP.NET Core app with Azure App Configuration](quickstart-aspnet-core-app.md)
107-
108-
[az appconfig identity assign]: /cli/azure/appconfig/identity#az_appconfig_identity_assign
109-
[az login]: /cli/azure/reference-index#az_login

articles/azure-app-configuration/powershell-samples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: PowerShell samples
3-
description: Learn about the Azure PowerShell sample scripts available for App Configuration.
2+
title: Azure App Configuration PowerShell samples
3+
description: Learn about the Azure PowerShell sample scripts that are available for Azure App Configuration.
44
ms.service: azure-app-configuration
55
ms.custom: devx-track-azurepowershell
66
ms.topic: sample
7-
ms.date: 01/19/2023
7+
ms.date: 05/25/2024
88
ms.author: malev
99
author: maud-lv
1010
---

articles/azure-app-configuration/quickstart-dotnet-app.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,20 @@
11
---
2-
title: Quickstart for Azure App Configuration with .NET Framework | Microsoft Docs
2+
title: Quickstart for Azure App Configuration with .NET Framework
33
description: In this article, create a .NET Framework app with Azure App Configuration to centralize storage and management of application settings separate from your code.
44
services: azure-app-configuration
55
author: maud-lv
66
ms.service: azure-app-configuration
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp, mode-other, devx-track-dotnet
99
ms.topic: quickstart
10-
ms.date: 02/28/2023
10+
ms.date: 05/24/2024
1111
ms.author: malev
1212
#Customer intent: As a .NET Framework developer, I want to manage all my app settings in one place.
1313
---
1414
# Quickstart: Create a .NET Framework app with Azure App Configuration
1515

1616
There are two ways to incorporate Azure App Configuration into a .NET Framework-based app.
17+
1718
- The configuration builder for App Configuration enables data from App Configuration to be loaded to App Settings. Your app accesses configuration as it always does via `ConfigurationManager`. You don't need to make any code change other than updates to *app.config* or *web.config* files. This quickstart will walk you through this option.
1819
- As is designed by the .NET Framework, the App Settings can only refresh upon application restart. The App Configuration .NET provider is a .NET Standard library. It supports caching and refreshing configuration dynamically without application restart. If the dynamic configuration is essential to you and you are willing to make code changes, see tutorials on how you can implement dynamic configuration updates in a [.NET Framework console app](./enable-dynamic-configuration-dotnet.md) or an [ASP.NET web app](./enable-dynamic-configuration-aspnet-netfx.md).
1920

@@ -86,19 +87,21 @@ Add the following key-value to the App Configuration store and leave **Label** a
8687

8788
## Build and run the app
8889

89-
1. Set an environment variable named **ConnectionString** to the read-only key connection string obtained during your App Configuration store creation.
90+
1. Set an environment variable named **ConnectionString** to the read-only key connection string obtained during your App Configuration store creation.
9091

9192
If you use the Windows command prompt, run the following command:
93+
9294
```console
9395
setx ConnectionString "connection-string-of-your-app-configuration-store"
9496
```
9597

9698
If you use Windows PowerShell, run the following command:
99+
97100
```powershell
98101
$Env:ConnectionString = "connection-string-of-your-app-configuration-store"
99102
```
100103

101-
1. Restart Visual Studio to allow the change to take effect.
104+
1. Restart Visual Studio to allow the change to take effect.
102105

103106
1. Press Ctrl + F5 to build and run the console app. You should see the message from App Configuration outputs in the console.
104107

articles/azure-app-configuration/quickstart-resource-manager.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ titleSuffix: Azure App Configuration
44
description: Learn how to create an Azure App Configuration store by using Azure Resource Manager template (ARM template).
55
author: maud-lv
66
ms.author: malev
7-
ms.date: 06/09/2021
7+
ms.date: 05/29/2024
88
ms.service: azure-app-configuration
99
ms.topic: quickstart
1010
ms.custom: subject-armqs, mode-arm, devx-track-arm-template
11+
#customer intent: As a developer, I want learn how to create an Azure App Configuration store using an ARM template so that I can get started using Azure App Configuration quickly.
1112
---
1213

1314
# Quickstart: Create an Azure App Configuration store by using an ARM template

0 commit comments

Comments
 (0)