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
#Customer intent: As a developer, I want to automate creating and deploying a logic app workflow to whichever environment that I want using Bicep.
11
+
#Customer intent: As a developer, I want to create and deploy an automated workflow in multi-tenant Azure Logic Apps with Bicep.
12
12
---
13
13
14
-
# Quickstart: Create and deploy a logic app workflow using Bicep
14
+
# Quickstart: Create and deploy a Consumption logic app workflow in multi-tenant Azure Logic Apps with Bicep
15
15
16
-
[Azure Logic Apps](../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 selecting from [hundreds of connectors](/connectors/connector-reference/connector-reference-logicapps-connectors). This quickstart focuses on the process for deploying a Bicep file to create a basic logic app that checks the status for Azure on an hourly schedule.
16
+
[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 a Bicep file 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 [multi-tenant Azure Logic Apps](logic-apps-overview.md#resource-environment-differences).
@@ -25,7 +25,7 @@ If you don't have an Azure subscription, create a [free Azure account](https://a
25
25
26
26
The Bicep file used in this quickstart is from [Azure Quickstart Templates](https://github.com/Azure/azure-quickstart-templates/blob/master/quickstarts/microsoft.logic/logic-app-create/main.bicep).
27
27
28
-
The quickstart template creates a logic app workflow that uses the Recurrence trigger, which is set to run every hour, and an HTTP [*built-in*action](../connectors/built-in.md), which calls a URL that returns the status for Azure. A built-in action is native to the Azure Logic Apps platform.
28
+
The quickstart template creates a Consumption logic app workflow that uses the [*built-in*](../connectors/built-in.md)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.
29
29
30
30
This Bicep file creates the following Azure resource:
31
31
@@ -38,26 +38,26 @@ This Bicep file creates the following Azure resource:
38
38
1. Save the Bicep file as **main.bicep** to your local computer.
39
39
1. Deploy the Bicep file using either Azure CLI or Azure PowerShell.
40
40
41
-
# [CLI](#tab/CLI)
41
+
# [CLI](#tab/CLI)
42
42
43
-
```azurecli
44
-
az group create --name exampleRG --location eastus
45
-
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters logicAppName=<logic-name>
46
-
```
43
+
```azurecli
44
+
az group create --name exampleRG --location eastus
45
+
az deployment group create --resource-group exampleRG --template-file main.bicep --parameters logicAppName=<logic-name>
0 commit comments