Skip to content

Commit 892f580

Browse files
authored
Merge pull request #1 from ecfan/patch-2
Clarity and consistency edits with updated ARM quickstart
2 parents 5749a82 + ac5f06d commit 892f580

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

articles/logic-apps/quickstart-create-deploy-bicep.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: Quickstart - Create and deploy logic app workflow using Bicep
3-
description: How to create and deploy a logic app using Bicep.
2+
title: Quickstart - Create Consumption logic app workflow with Bicep
3+
description: How to create and deploy a Consumption logic app workflow with Bicep.
44
author: schaffererin
55
services: logic-apps
66
ms.suite: integration
77
ms.topic: quickstart
88
ms.author: v-eschaffer
99
ms.custom: mvc, subject-armqs, devx-track-azurepowershell, mode-arm
1010
ms.date: 04/07/2022
11-
#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.
1212
---
1313

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
1515

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).
1717

1818
[!INCLUDE [About Bicep](../../includes/resource-manager-quickstart-bicep-introduction.md)]
1919

@@ -25,7 +25,7 @@ If you don't have an Azure subscription, create a [free Azure account](https://a
2525

2626
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).
2727

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.
2929

3030
This Bicep file creates the following Azure resource:
3131

@@ -38,26 +38,26 @@ This Bicep file creates the following Azure resource:
3838
1. Save the Bicep file as **main.bicep** to your local computer.
3939
1. Deploy the Bicep file using either Azure CLI or Azure PowerShell.
4040

41-
# [CLI](#tab/CLI)
41+
# [CLI](#tab/CLI)
4242

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>
46+
```
4747

48-
# [PowerShell](#tab/PowerShell)
48+
# [PowerShell](#tab/PowerShell)
4949

50-
```azurepowershell
51-
New-AzResourceGroup -Name exampleRG -Location eastus
52-
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile ./main.bicep -logicAppName "<logic-name>"
53-
```
50+
```azurepowershell
51+
New-AzResourceGroup -Name exampleRG -Location eastus
52+
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile ./main.bicep -logicAppName "<logic-name>"
53+
```
5454

55-
---
55+
---
5656

57-
> [!NOTE]
58-
> Replace **\<logic-name\>** with the name of the logic app to create.
57+
> [!NOTE]
58+
> Replace **\<logic-name\>** with the name of the logic app to create.
5959
60-
When the deployment finishes, you should see a message indicating the deployment succeeded.
60+
When the deployment finishes, you should see a message indicating the deployment succeeded.
6161

6262
## Review deployed resources
6363

@@ -79,7 +79,7 @@ Get-AzResource -ResourceGroupName exampleRG
7979

8080
## Clean up resources
8181

82-
When no longer needed, use the Azure portal, Azure CLI, or Azure PowerShell to delete the resource group and its resources.
82+
When you no longer need the logic app, use the Azure portal, Azure CLI, or Azure PowerShell to delete the resource group and its resources.
8383

8484
# [CLI](#tab/CLI)
8585

0 commit comments

Comments
 (0)