You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-app-configuration-event.md
+13-17Lines changed: 13 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,26 +1,22 @@
1
1
---
2
-
title: "Tutorial: Use Azure App Configuration to send events to a web endpoint"
3
-
titleSuffix: Azure App Configuration
4
-
description: In this tutorial, you learn how to set up Azure App Configuration event subscriptions to send key-value modification events to a web endpoint.
2
+
title: Send Events to a web endpoint using Azure App Configuration
3
+
description: Learn to use Azure App Configuration event subscriptions to send key-value modification events to a web endpoint
5
4
services: azure-app-configuration
6
-
documentationcenter: ''
7
-
author: jimmyca
8
-
editor: ''
9
-
5
+
author: lisaguthrie
10
6
ms.assetid:
11
7
ms.service: azure-app-configuration
12
8
ms.devlang: csharp
13
-
ms.topic: tutorial
14
-
ms.date: 05/30/2019
9
+
ms.topic: how-to
10
+
ms.date: 02/25/2020
15
11
ms.author: lcozzens
16
-
ms.custom: mvc
12
+
17
13
18
14
#Customer intent: I want to be notified or trigger a workload when a key-value is modified.
19
15
---
20
16
21
-
# Quickstart: Route Azure App Configuration events to a web endpoint with Azure CLI
17
+
# Route Azure App Configuration events to a web endpoint with Azure CLI
22
18
23
-
In this quickstart, you learn how to set up Azure App Configuration event subscriptions to send key-value modification events to a web endpoint. Azure App Configuration users can subscribe to events that are emitted whenever key-values are modified. These events can trigger webhooks, Azure Functions, Azure Storage Queues, or any other event handler that is supported by Azure Event Grid. Typically, you send events to an endpoint that processes the event data and takes actions. However, to simplify this article, you send the events to a web app that collects and displays the messages.
19
+
In this article, you learn how to set up Azure App Configuration event subscriptions to send key-value modification events to a web endpoint. Azure App Configuration users can subscribe to events emitted whenever key-values are modified. These events can trigger web hooks, Azure Functions, Azure Storage Queues, or any other event handler that is supported by Azure Event Grid. Typically, you send events to an endpoint that processes the event data and takes actions. However, to simplify this article, you send the events to a web app that collects and displays the messages.
24
20
25
21
## Prerequisites
26
22
@@ -44,15 +40,16 @@ The following example creates a resource group named `<resource_group_name>` in
44
40
az group create --name <resource_group_name> --location westus
45
41
```
46
42
47
-
## Create an App Configuration
43
+
## Create an App Configuration store
48
44
49
-
Replace `<appconfig_name>` with a unique name for your App Configuration, and `<resource_group_name>` with the resource group you created earlier. The name must be unique because it is used as a DNS name.
45
+
Replace `<appconfig_name>` with a unique name for your configuration store, and `<resource_group_name>` with the resource group you created earlier. The name must be unique because it is used as a DNS name.
50
46
51
47
```azurecli-interactive
52
48
az appconfig create \
53
49
--name <appconfig_name> \
54
50
--location westus \
55
-
--resource-group <resource_group_name>
51
+
--resource-group <resource_group_name> \
52
+
--sku free
56
53
```
57
54
58
55
## Create a message endpoint
@@ -76,7 +73,7 @@ You should see the site with no messages currently displayed.
You subscribe to a topic to tell Event Grid which events you want to track and where to send those events. The following example subscribes to the App Configuration you created, and passes the URL from your web app as the endpoint for event notification. Replace `<event_subscription_name>` with a name for your event subscription. For `<resource_group_name>` and `<appconfig_name>`, use the values you created earlier.
82
79
@@ -120,7 +117,6 @@ You've triggered the event, and Event Grid sent the message to the endpoint you
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-import-export-data.md
+15-21Lines changed: 15 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,47 +1,41 @@
1
1
---
2
-
title: Import or export data with Azure App Configuration | Microsoft Docs
2
+
title: Import or export data with Azure App Configuration
3
3
description: Learn how to import or export data to or from Azure App Configuration
4
4
services: azure-app-configuration
5
-
documentationcenter: ''
6
5
author: lisaguthrie
7
-
manager: balans
8
-
editor: ''
9
-
10
-
ms.assetid:
11
6
ms.service: azure-app-configuration
12
7
ms.topic: conceptual
13
-
ms.date: 02/24/2019
8
+
ms.date: 02/25/2020
14
9
ms.author: lcozzens
15
-
ms.custom: mvc
16
10
---
17
11
18
12
# Import or export configuration data
19
13
20
-
Azure App Configuration supports data import and export operations. Use these operations to work with configuration data in bulk and exchange data between your App Configuration store and code project. For example, you can set up one App Configuration store for testing and another for production. You then can copy application settings between them via a file so that you don't have to enter data twice.
14
+
Azure App Configuration supports data import and export operations. Use these operations to work with configuration data in bulk and exchange data between your App Configuration store and code project. For example, you can set up one App Configuration store for testing and another for production. You can copy application settings between them so that you don't have to enter data twice.
21
15
22
16
This article provides a guide for importing and exporting data with App Configuration.
23
17
24
18
## Import data
25
19
26
-
Import brings configuration data into an App Configuration store from an existing source, instead of manually entering it. Use the import function to migrate data into an App Configuration store or aggregate data from multiple sources. App Configuration supports importing from a JSON, YAML, or properties file.
20
+
Import brings configuration data into an App Configuration store from an existing source. Use the import function to migrate data into an App Configuration store or aggregate data from multiple sources. App Configuration supports importing from a JSON, YAML, or properties file.
27
21
28
22
Import data by using either the [Azure portal](https://portal.azure.com) or the [Azure CLI](./scripts/cli-import.md). From the Azure portal, follow these steps:
29
23
30
-
1. Browse to your App Configuration store, and select **Import/Export**.
24
+
1. Browse to your App Configuration store, and select **Import/Export** from the **Operations** menu.
31
25
32
-
2. On the **Import** tab, select **Source service** > **Configuration File**.
26
+
1. On the **Import** tab, select **Source service** > **Configuration File**.
33
27
34
-
3. Select **For language**> **File type**.
28
+
1. Select **For language**and select your desired input type.
35
29
36
-
4. Select the **Folder** icon, and browse to the file to import.
30
+
1. Select the **Folder** icon, and browse to the file to import.
37
31
38
32

39
33
40
-
5. Select a **Separator**, and optionally enter a **Prefix** to use for imported key names.
34
+
1. Select a **Separator**, and optionally enter a **Prefix** to use for imported key names.
Copy file name to clipboardExpand all lines: articles/azure-app-configuration/howto-integrate-azure-managed-service-identity.md
+9-8Lines changed: 9 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,29 @@
1
1
---
2
-
title: Integrate with Azure managed identities
3
-
description: Learn how to use Azure managed identities to authenticate with and gain access to Azure App Configuration
2
+
title: Authenticate using Azure managed identities
3
+
titleSuffix: Azure App Configuration
4
+
description: Authenticate to Azure App Configuration using Azure managed identities
4
5
ms.service: azure-app-configuration
5
6
author: lisaguthrie
6
7
7
8
ms.service: azure-app-configuration
8
9
ms.topic: conceptual
9
-
ms.date: 12/29/2019
10
+
ms.date: 2/25/2020
10
11
ms.author: lcozzens
11
12
12
13
---
13
14
# Integrate with Azure Managed Identities
14
15
15
-
Azure Active Directory [managed identities](https://docs.microsoft.com/azure/active-directory/managed-identities-azure-resources/overview) help simplify secrets management for your cloud application. With a managed identity, your code can use the service principal that was created for the Azure service it runs on. You use a managed identity instead of a separate credential stored in Azure Key Vault or a local connection string.
16
+
Azure Active Directory [managed identities](../active-directory/managed-identities-azure-resources/overview.md)simplify secrets management for your cloud application. With a managed identity, your code can use the service principal created for the Azure service it runs on. You use a managed identity instead of a separate credential stored in Azure Key Vault or a local connection string.
16
17
17
-
Azure App Configuration and its .NET Core, .NET Framework, and Java Spring client libraries have managed identity support built into them. Although you aren't required to use it, the managed identity eliminates the need for an access token that contains secrets. Your code can access the App Configuration store using only the service endpoint. You can embed this URL in your code directly without the concern of exposing any secret.
18
+
Azure App Configuration and its .NET Core, .NET Framework, and Java Spring client libraries have managed identity support built into them. Although you aren't required to use it, the managed identity eliminates the need for an access token that contains secrets. Your code can access the App Configuration store using only the service endpoint. You can embed this URL in your code directly without exposing any secret.
18
19
19
-
This tutorial shows how you can take advantage of the managed identity to access App Configuration. It builds on the web app introduced in the quickstarts. Before you continue, finish[Create an ASP.NET Core app with App Configuration](./quickstart-aspnet-core-app.md) first.
20
+
This article shows how you can take advantage of the managed identity to access App Configuration. It builds on the web app introduced in the quickstarts. Before you continue, [Create an ASP.NET Core app with App Configuration](./quickstart-aspnet-core-app.md) first.
20
21
21
-
This tutorial also shows how you can use the managed identity in conjunction with App Configuration's Key Vault references. With a single managed identity, you can seamlessly access both secrets from Key Vault and configuration values from App Configuration. If you wish to explore this capability, finish [Use Key Vault References with ASP.NET Core](./use-key-vault-references-dotnet-core.md) first.
22
+
This article also shows how you can use the managed identity in conjunction with App Configuration's Key Vault references. With a single managed identity, you can seamlessly access both secrets from Key Vault and configuration values from App Configuration. If you wish to explore this capability, finish [Use Key Vault References with ASP.NET Core](./use-key-vault-references-dotnet-core.md) first.
22
23
23
24
You can use any code editor to do the steps in this tutorial. [Visual Studio Code](https://code.visualstudio.com/) is an excellent option available on the Windows, macOS, and Linux platforms.
24
25
25
-
In this tutorial, you learn how to:
26
+
In this article, you learn how to:
26
27
27
28
> [!div class="checklist"]
28
29
> * Grant a managed identity access to App Configuration.
0 commit comments