Quickstart: Create and deploy a Consumption logic app workflow in multi-tenant Azure Logic Apps with an ARM template
Applies to: Azure Logic Apps (Consumption)
Azure Logic Apps 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. This quickstart focuses on the process for deploying an Azure Resource Manager template (ARM template) to create a basic Consumption logic app workflow that checks the status for Azure on an hourly schedule and runs in multi-tenant Azure Logic Apps.
An Azure Resource Manager template is a JavaScript Object Notation (JSON) file that defines the infrastructure and configuration for your project. The template uses declarative syntax. You describe your intended deployment without writing the sequence of programming commands to create the deployment.
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.
If you don't have an Azure subscription, create a Azure account before you start.
This quickstart uses the Create a logic app template, which you can find in the Azure Quickstart Templates Gallery but is too long to show here. Instead, you can review the quickstart template's "azuredeploy.json file" in the templates gallery.
The quickstart template creates a Consumption logic app workflow that uses the built-in Recurrence trigger, which is set to run every hour, and a built-in HTTP action, which calls a URL that returns the status for Azure. Built-in operations run natively on Azure Logic Apps platform.
This template creates the following Azure resource:
- Microsoft.Logic/workflows, which creates the workflow for a Consumption logic app resource.
To find more quickstart templates for Azure Logic Apps, review the Microsoft.Logic templates in the gallery.
Follow the option that you want to use for deploying the quickstart template:
Option | Description |
---|---|
Azure portal | If your Azure environment meets the prerequisites, and you're familiar with using ARM templates, these steps help you sign in directly to Azure and open the quickstart template in the Azure portal. For more information, see Deploy resources with ARM templates and Azure portal. |
Azure CLI | The Azure CLI provides a command-line experience for creating and managing Azure resources. To run these commands, you need Azure CLI version 2.6 or later. To check your CLI version, enter az --version. For more information, see the following documentation: - What is Azure CLI - Get started with Azure CLI |
Azure PowerShell | Azure PowerShell provides a set of cmdlets that use the Azure Resource Manager model for managing your Azure resources. For more information, see the following documentation: - Azure PowerShell Overview - Introducing the Az PowerShell module - Get started with Azure PowerShell |
Azure Resource Management REST API | Azure provides Representational State Transfer (REST) APIs, which are service endpoints that support HTTP operations (methods) that you use to create, retrieve, update, or delete access to service resources. For more information, see Get started with Azure REST API. |
If you don't want to use an existing Azure resource group, create a new resource group by following this syntax for the request that you send to the Resource Management REST API:
PUT https://management.chinacloudapi.cn/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}?api-version=2019-10-01
Value Description <subscriptionId> The GUID for the Azure subscription that you want to use <resourceGroupName> The name for the Azure resource group to create. This example uses Check-Azure-Status-RG. For example:
PUT https://management.chinacloudapi.cn/subscriptions/xxxxXXXXxxxxXXXXX/resourcegroups/Check-Azure-Status-RG?api-version=2019-10-01
For more information, see the following documentation:
To deploy the quickstart template to your resource group, follow this syntax for the request that you send to the Resource Management REST API:
PUT https://management.chinacloudapi.cn/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Resources/deployments/{deploymentName}?api-version=2019-10-01
Value Description <subscriptionId> The GUID for the Azure subscription that you want to use <resourceGroupName> The name for the Azure resource group to use. This example uses Check-Azure-Status-RG. <deploymentName> The name to use for your deployment. This example uses Check-Azure-Status-LA. For example:
PUT https://management.chinacloudapi.cn/subscriptions/xxxxXXXXxxxxXXXXX/resourcegroups/Check-Azure-Status-RG/providers/Microsoft.Resources/deployments/Check-Azure-Status-LA?api-version=2019-10-01
For more information, see Resource Management REST API: Deployments - Create Or Update.
To provide the values to use for the deployment, such as the Azure region and links to the quickstart template and parameter file, which contains the values for the quickstart template to use at deployment, follow this syntax for the request body that you send to the Resource Management REST API:
{ "location": "{Azure-region}", "properties": { "templateLink": { "uri": "{quickstart-template-URL}", "contentVersion": "1.0.0.0" }, "parametersLink": { "uri": "{quickstart-template-parameter-file-URL}", "contentVersion": "1.0.0.0" }, "mode": "Incremental" } }
Property Value Description location <Azure-region> The Azure region to use for deployment. This example uses China North. templateLink : uri <quickstart-template-URL> The URL location for the quickstart template to use for deployment:
https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.jsonparametersLink : uri <quickstart-template-parameter-file-URL> The URL location for the quickstart template's parameter file to use for deployment:
https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.parameters.json
For more information about the Resource Manager parameter file, see the following documentation:
- Create Resource Manager parameter file
- Tutorial: Use parameter files to deploy your ARM templatemode <deployment-mode> Run either an incremental update or complete update. This example uses Incremental, which is the default value. For more information, see Azure Resource Manager deployment modes. For example:
{ "location": "China East 2", "properties": { "templateLink": { "uri": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.json", "contentVersion": "1.0.0.0" }, "parametersLink": { "uri": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.logic/logic-app-create/azuredeploy.parameters.json", "contentVersion": "1.0.0.0" }, "mode": "Incremental" } }
For more information, see these topics:
To view the logic app workflow, you can use the Azure portal, run a script that you create with Azure CLI or Azure PowerShell, or use the Logic App REST API.
GET https://management.chinacloudapi.cn/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName}?api-version=2016-06-01
Value | Description |
---|---|
subscriptionId | The GUID for the Azure subscription where you deployed the quickstart template. |
resourceGroupName | The name for the Azure resource group where you deployed the quickstart template. This example uses Check-Azure-Status-RG. |
workflowName | The name for the logic app that you deployed. This example uses Check-Azure-Status-LA. |
For example:
GET https://management.chinacloudapi.cn/subscriptions/xxxxXXXXxxxxXXXXX/resourceGroups/Check-Azure-Status-RG/providers/Microsoft.Logic/workflows/Check-Azure-Status-LA?api-version=2016-06-01
For more information, see Logic Apps REST API: Workflows - Get.
If you plan to continue working with subsequent quickstarts and tutorials, you might want to keep these resources. When you no longer need the logic app, delete the resource group by using either the Azure portal, Azure CLI, Azure PowerShell, or Resource Management REST API.
DELETE https://management.chinacloudapi.cn/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}?api-version=2019-10-01
Value | Description |
---|---|
subscriptionId | The GUID for the Azure subscription where you deployed the quickstart template. |
resourceGroupName | The name for the Azure resource group where you deployed the quickstart template. This example uses Check-Azure-Status-RG. |
For example:
GET https://management.chinacloudapi.cn/subscriptions/xxxxXXXXxxxxXXXXX/resourceGroups/Check-Azure-Status-RG?api-version=2019-10-01
For more information, see Resource Management REST API: Resource Groups - Delete.