Skip to content

Commit 46e6b30

Browse files
Merge pull request #313034 from ecfan/freshness
[Azure Logic Apps] Updates for metadata freshness
2 parents e024cd5 + 73f66ff commit 46e6b30

7 files changed

Lines changed: 81 additions & 55 deletions

articles/logic-apps/includes/logic-apps-sku-consumption.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ ms.service: azure-logic-apps
33
ms.topic: include
44
author: ecfan
55
ms.author: estfan
6-
ms.date: 05/19/2025
6+
ms.update-cycle: 1095-days
7+
ms.date: 03/11/2026
78
ms.custom:
89
- build-2025
910
---

articles/logic-apps/logic-apps-create-azure-resource-manager-templates.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,44 @@
11
---
2-
title: Create Consumption logic app templates for deployment
3-
description: Create Azure Resource Manager templates to automate deployment for Consumption logic apps in Azure Logic Apps.
2+
title: Create ARM Templates for Consumption Workflows
3+
description: Create Azure Resource Manager templates (ARM templates) for Consumption logic app workflows in multitenant Azure Logic Apps.
44
services: logic-apps
55
ms.suite: integration
6-
ms.reviewer: estfan, azla
6+
ms.reviewers: estfan, azla
77
ms.topic: how-to
8+
ms.update-cycle: 1095-days
9+
ms.date: 03/11/2026
810
ms.custom: devx-track-azurepowershell, devx-track-arm-template
9-
ms.date: 02/19/2025
11+
# Customer intent: As an integration developer who works with Azure Logic Apps, I want to create ARM templates for Consumption logic app workflows in multitenant Azure Logic Apps.
1012
---
1113

12-
# Create Azure Resource Manager templates to automate Consumption logic app deployment for Azure Logic Apps
14+
# Create Consumption logic app workflows in multitenant Azure Logic Apps by using ARM templates
1315

14-
[!INCLUDE [logic-apps-sku-consumption](~/reusable-content/ce-skilling/azure/includes/logic-apps-sku-consumption.md)]
16+
[!INCLUDE [logic-apps-sku-consumption](includes/logic-apps-sku-consumption.md)]
1517

16-
To help you automatically create and deploy a Consumption logic app, this article describes the ways that you can create an [Azure Resource Manager template](../azure-resource-manager/management/overview.md). Azure Logic Apps also provides a [prebuilt logic app Azure Resource Manager template](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.json) that you can reuse, not only to create Consumption logic apps, but also to define the resources and parameters for deployment. You can use this template for your own business scenarios or customize the template to meet your requirements. For an overview about the structure and syntax for a template that contains a workflow definition and other resources necessary for deployment, see [Overview: Automate deployment for logic apps with Azure Resource Manager templates](logic-apps-azure-resource-manager-templates-overview.md).
18+
To help you automatically create and deploy a Consumption logic app, this guide shows how to create an [Azure Resource Manager template](../azure-resource-manager/management/overview.md). Azure Logic Apps provides a [prebuilt logic app Azure Resource Manager template](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.json) that you can reuse, not only to create Consumption logic apps, but also to define the resources and parameters for deployment. You can use this template for your own business scenarios or customize the template to meet your requirements. For an overview about the structure and syntax for a template that contains a workflow definition and other resources necessary for deployment, see [Overview: Automate deployment for logic apps with Azure Resource Manager templates](logic-apps-azure-resource-manager-templates-overview.md).
1719

1820
> [!IMPORTANT]
1921
>
20-
> This article applies only to Consumption logic apps, not Standard logic apps. Make sure that
22+
> This guide applies only to Consumption logic apps, not Standard logic apps. Make sure that
2123
> connections in your template use the same Azure resource group and location as your logic app.
2224
23-
For more information about Azure Resource Manager templates, see the following topics:
25+
For more information, see:
2426

2527
* [Azure Resource Manager template structure and syntax](../azure-resource-manager/templates/syntax.md)
2628
* [Author Azure Resource Manager templates](../azure-resource-manager/templates/syntax.md)
2729
* [Develop Azure Resource Manager templates for cloud consistency](../azure-resource-manager/templates/template-cloud-consistency.md)
2830

31+
## Prerequisites
32+
33+
You need an Azure account and subscription. [Get a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
34+
2935
<a name="azure-powershell"></a>
3036

3137
## Create templates with Azure PowerShell
3238

3339
You can create Resource Manager templates by using Azure PowerShell with the [LogicAppTemplate module](https://github.com/jeffhollan/LogicAppTemplateCreator). This open-source module first evaluates your logic app and any connections that the logic app uses. The module then generates template resources with the necessary parameters for deployment.
3440

35-
For example, suppose you have a logic app that receives a message from an Azure Service Bus queue and uploads data to Azure SQL Database. The module preserves all the orchestration logic and parameterizes the SQL and Service Bus connection strings so that you can provide and change those values based on your deployment needs.
41+
For example, suppose you have a logic app that receives a message from an Azure Service Bus queue and uploads data to Azure SQL Database. The module preserves the orchestration logic and parameterizes the SQL and Service Bus connection strings so that you can provide and change those values based on your deployment needs.
3642

3743
These samples show how to create and deploy logic apps by using Azure Resource Manager templates, Azure Pipelines in Azure DevOps, and Azure PowerShell:
3844

@@ -62,7 +68,7 @@ Or, to install manually, follow the steps in GitHub for [Logic App Template Crea
6268

6369
### Install Azure Resource Manager client
6470

65-
For the LogicAppTemplate module to work with any Azure tenant and subscription access token, install the [Azure Resource Manager client tool](https://github.com/projectkudu/ARMClient), which is a simple command line tool that calls the Azure Resource Manager API.
71+
For the LogicAppTemplate module to work with any Azure tenant and subscription access token, install the [Azure Resource Manager client tool](https://github.com/projectkudu/ARMClient). This simple command line tool calls the Azure Resource Manager API.
6672

6773
When you run the `Get-LogicAppTemplate` command with this tool, the command first gets an access token through the ARMClient tool, pipes the token to the PowerShell script, and creates the template as a JSON file. For more information about the tool, see this [article about the Azure Resource Manager client tool](https://blog.davidebbo.com/2015/01/azure-resource-manager-client.html).
6874

articles/logic-apps/logic-apps-deploy-azure-resource-manager-templates.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
---
2-
title: Deploy Resource Manager templates
3-
description: Deploy Azure Resource Manager templates created for Azure Logic Apps.
2+
title: Deploy ARM Templates for Consumption Workflows
3+
description: Deploy Azure Resource Manager templates (ARM templates) for Consumption logic app workflows in multitenant Azure Logic Apps.
44
services: logic-apps
55
ms.suite: integration
6-
ms.reviewer: estfan, azla
6+
ms.reviewers: estfan, azla
77
ms.topic: how-to
8-
ms.date: 02/19/2025
8+
ms.update-cycle: 1095-days
9+
ms.date: 03/11/2026
910
ms.custom: devx-track-azurepowershell, devx-track-azurecli, engagement-fy23, devx-track-arm-template
1011
ms.devlang: azurecli
12+
# Customer intent: As an integration developer who works with Azure Logic Apps, I want to deploy ARM templates for Consumption logic app workflows in multitenant Azure Logic Apps.
1113
---
1214

1315
# Deploy Azure Resource Manager templates for Azure Logic Apps
1416

15-
[!INCLUDE [logic-apps-sku-consumption](~/reusable-content/ce-skilling/azure/includes/logic-apps-sku-consumption.md)]
17+
[!INCLUDE [logic-apps-sku-consumption](includes/logic-apps-sku-consumption.md)]
1618

1719
After you create an Azure Resource Manager template for your Consumption logic app, you can deploy your template in these ways:
1820

@@ -39,11 +41,15 @@ For example, you're prompted for the following information after you sign in to
3941
* A test URI
4042
* Acceptance of the specified terms and conditions
4143

42-
For more information, see these topics:
44+
For more information, see:
4345

4446
* [Overview: Automate deployment for logic apps with Azure Resource Manager templates](/azure/logic-apps/logic-apps-azure-resource-manager-templates-overview)
4547
* [Deploy resources with Azure Resource Manager templates and the Azure portal](/azure/azure-resource-manager/templates/deploy-portal)
4648

49+
## Prerequisites
50+
51+
You need an Azure account and subscription. [Get a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
52+
4753
<a name="powershell"></a>
4854

4955
## Deploy with Azure PowerShell

articles/logic-apps/logic-apps-enterprise-integration-schemas.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
---
2-
title: Add schemas to use with workflows
3-
description: Add schemas for workflows in Azure Logic Apps.
2+
title: Add Schemas to Use in Workflows
3+
description: Add schemas to use with workflows in Azure Logic Apps.
44
services: logic-apps
55
ms.suite: integration
66
author: divyaswarnkar
77
ms.author: divswa
8-
ms.reviewer: estfan, azla
8+
ms.reviewers: estfan, azla
99
ms.topic: how-to
10-
ms.date: 02/19/2025
11-
# As a logic app workflow developer, I want to know how I can integrate and use schemas in my workflows.
10+
ms.update-cycle: 1095-days
11+
ms.date: 03/11/2026
12+
# As an integration developer who works with Azure Logic Apps, I want to add schemas to use with my workflows.
1213
---
1314

14-
# Add schemas to use with workflows with Azure Logic Apps
15+
# Add schemas to use with workflows in Azure Logic Apps
1516

1617
[!INCLUDE [logic-apps-sku-consumption-standard](../../includes/logic-apps-sku-consumption-standard.md)]
1718

1819
Workflow actions such as **Flat File** and **XML Validation** require a schema to perform their tasks. For example, the **XML Validation** action requires an XML schema to check that documents use valid XML and have the expected data in the predefined format. This schema is an XML document that uses [XML Schema Definition (XSD)](https://www.w3.org/TR/xmlschema11-1/) language and has the .xsd file name extension. The **Flat File** actions use a schema to encode and decode XML content.
1920

20-
This article shows how to add a schema to your integration account. If you're working with a Standard logic app workflow, you can also add a schema directly to your logic app resource.
21+
This guide shows how to add a schema to your integration account. If you're working with a Standard logic app workflow, you can also add a schema directly to your logic app resource.
2122

2223
## Prerequisites
2324

24-
* An Azure account and subscription. If you don't have a subscription yet, [sign up for a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
25+
* An Azure account and subscription. [Get a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
2526

2627
* The schema file that you want to add. To create schemas, you can use Visual Studio 2019 and the [Microsoft Azure Logic Apps Enterprise Integration Tools Extension](https://aka.ms/vsenterpriseintegrationtools).
2728

@@ -280,7 +281,7 @@ The following steps apply only if you're deleting a schema that you added to you
280281

281282
---
282283

283-
## Next steps
284+
## Related content
284285

285-
* [Validate XML for workflows in Azure Logic Apps](logic-apps-enterprise-integration-xml-validation.md)
286-
* [Transform XML for workflows in Azure Logic Apps](logic-apps-enterprise-integration-transform.md)
286+
- [Validate XML for workflows in Azure Logic Apps](logic-apps-enterprise-integration-xml-validation.md)
287+
- [Transform XML for workflows in Azure Logic Apps](logic-apps-enterprise-integration-transform.md)

articles/logic-apps/parse-document-chunk-text.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
title: Parse document or chunk text
3-
description: Parse a document or chunk text for workflows in Azure Logic Apps.
2+
title: Parse Documents and Chunk Text in Workflows
3+
description: Parse documents and chunk text in logic app workflows for Azure Logic Apps.
44
services: azure-logic-apps
55
ms.suite: integration
66
ms.collection: ce-skilling-ai-copilot
7-
ms.reviewer: estfan, azla
7+
ms.reviewers: estfan, azla
88
ms.topic: how-to
9-
ms.date: 08/14/2025
109
ms.update-cycle: 180-days
11-
# Customer intent: As an integration developer using Azure Logic Apps, I want to parse a document or chunk text that I want to use with Azure AI operations for my workflow in Azure Logic Apps.
10+
ms.date: 03/11/2026
11+
# Customer intent: As an integration developer who uses Azure Logic Apps, I want to parse a document or chunk text for Azure AI Search or Azure OpenAI actions in logic app workflows.
1212
---
1313

14-
# Parse or chunk content for workflows in Azure Logic Apps
14+
# Parse documents and chunk text for AI actions in workflows for Azure Logic Apps
1515

1616
[!INCLUDE [logic-apps-sku-consumption-standard](../../includes/logic-apps-sku-consumption-standard.md)]
1717

@@ -31,7 +31,7 @@ For these scenarios, use the **Data Operations** actions named **Parse a documen
3131
>
3232
> To find Azure Copilot, on the [Azure portal](https://portal.azure.com) toolbar, select **Copilot**.
3333
34-
This how-to guide shows how to add and set up these operations in your workflow.
34+
This guide shows how to add and set up actions for parsing documents and chunking text in your workflow.
3535

3636
## Known issues and limitations
3737

@@ -45,7 +45,7 @@ The **Parse a document** and **Chunk text** actions currently don't support host
4545

4646
## Parse a document
4747

48-
The **Parse a document** action converts content, such as a PDF document, CSV file, Excel file, and so on, into a tokenized string. For this example, suppose your workflow starts with the **Request** trigger named **When a HTTP request is received**. This trigger waits to receive an HTTP request sent from another component, such as an Azure function, another logic app workflow, and so on. The HTTP request includes the URL for a new uploaded document that is available for the workflow to retrieve and parse. An **HTTP** action immediately follows the trigger, and sends an HTTP request to the document's URL, and returns with the document content from its storage location.
48+
The **Parse a document** action converts content, such as a PDF document, CSV file, Excel file, and so on, into a tokenized string. For this example, suppose your workflow starts with the **Request** trigger named **When an HTTP request is received**. This trigger waits to receive an HTTP request sent from another component, such as an Azure function, another logic app workflow, and so on. The HTTP request includes the URL for a new uploaded document that is available for the workflow to retrieve and parse. An **HTTP** action immediately follows the trigger, and sends an HTTP request to the document's URL, and returns with the document content from its storage location.
4949

5050
If you use other content sources, such as Azure Blob Storage, SharePoint, OneDrive, File System, FTP, and so on, you can check whether triggers are available for these sources. You can also check whether actions are available to retrieve the content for these sources. For more information, see [Built-in operations](/azure/logic-apps/connectors/built-in/reference/) and [Managed connectors](/connectors/connector-reference/connector-reference-logicapps-connectors).
5151

articles/logic-apps/quickstart-create-deploy-azure-resource-manager-template.md

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,38 @@
11
---
2-
title: Quickstart - Create Consumption logic app workflow with ARM templates
3-
description: Learn to create and deploy a Consumption logic app workflow with Azure Resource Manager templates (ARM templates) in multitenant Azure Logic Apps.
2+
title: Quickstart - Deploy Consumption Workflows with ARM Templates
3+
description: Quickly automate deployment by creating Azure Resource Manager templates (ARM templates) for Consumption logic app workflows in multitenant Azure Logic Apps.
44
services: logic-apps
55
ms.suite: integration
6-
ms.reviewer: estfan, azla
6+
ms.reviewers: estfan, azla
77
ms.topic: quickstart
8+
ms.update-cycle: 1095-days
9+
ms.date: 03/11/2026
810
ms.custom: mvc, subject-armqs, mode-arm, devx-track-arm-template
9-
ms.date: 02/19/2025
10-
#Customer intent: As a developer, I want to create and deploy an automated workflow in multitenant Azure Logic Apps with Azure Resource Manager templates (ARM templates).
11+
#Customer intent: As an integration developer who works with Azure Logic Apps, I want to quickly create and deploy an automated Consumption workflow in multitenant Azure Logic Apps by using ARM templates.
1112
---
1213

13-
# Quickstart: Create and deploy a Consumption logic app workflow in multitenant Azure Logic Apps with an ARM template
14+
# Quickstart: Automate deployment for Consumption logic app workflows in multitenant Azure Logic Apps by using ARM templates
1415

15-
[!INCLUDE [logic-apps-sku-consumption](~/reusable-content/ce-skilling/azure/includes/logic-apps-sku-consumption.md)]
16+
[!INCLUDE [logic-apps-sku-consumption](includes/logic-apps-sku-consumption.md)]
1617

17-
[Azure Logic Apps](logic-apps-overview.md) is a cloud service that helps you create and run automated workflows that integrate data, apps, cloud-based services, and on-premises systems by choosing from [hundreds of connectors](/connectors/connector-reference/connector-reference-logicapps-connectors). This quickstart focuses on the process for deploying an Azure Resource Manager template (ARM template) to create a basic [Consumption logic app workflow](logic-apps-overview.md#resource-environment-differences) that checks the status for Azure on an hourly schedule and runs in [multitenant Azure Logic Apps](logic-apps-overview.md#resource-environment-differences).
18+
[Azure Logic Apps](logic-apps-overview.md) is a cloud platform that helps you create and run automated workflows that integrate data, apps, cloud-based services, and on-premises systems by choosing from [1,400+ connectors](/connectors/connector-reference/connector-reference-logicapps-connectors).
19+
20+
This quickstart focuses on the process for deploying an Azure Resource Manager template (ARM template) to create a basic [Consumption logic app workflow](logic-apps-overview.md#resource-environment-differences) that checks the status for Azure on an hourly schedule and runs in [multitenant Azure Logic Apps](logic-apps-overview.md#resource-environment-differences).
21+
22+
> [!IMPORTANT]
23+
>
24+
> This quickstart applies only to Consumption logic apps, not Standard logic apps. Make sure that
25+
> connections in your template use the same Azure resource group and location as your logic app.
1826
1927
[!INCLUDE [About Azure Resource Manager](~/reusable-content/ce-skilling/azure/includes/resource-manager-quickstart-introduction.md)]
2028

2129
If your environment meets the prerequisites, and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
2230

23-
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.logic%2Flogic-app-create%2Fazuredeploy.json":::
31+
:::image type="content" source="~/reusable-content/ce-skilling/azure/media/template-deployments/deploy-to-azure-button.svg" alt-text="Screenshot shows button to deploy the Resource Manager template to Azure." border="false" link="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.logic%2Flogic-app-create%2Fazuredeploy.json":::
2432

2533
## Prerequisites
2634

27-
If you don't have an Azure subscription, create a [free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn) before you start.
35+
You need an Azure account and subscription. [Get a free Azure account](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
2836

2937
## Review the template
3038

@@ -207,7 +215,7 @@ For more information, see the following documentation:
207215
}
208216
```
209217

210-
For more information, see these topics:
218+
For more information, see:
211219

212220
* [Resource Management REST API](/rest/api/resources/)
213221
* [Deploy resources with ARM templates and Resource Manager REST API](../azure-resource-manager/templates/deploy-rest.md)

0 commit comments

Comments
 (0)