Skip to content

Commit 1b6c7bf

Browse files
committed
Partial update
1 parent a00f8c6 commit 1b6c7bf

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

articles/logic-apps/create-single-tenant-workflows-visual-studio-code.md

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
---
2-
title: Create workflows with single-tenant Azure Logic Apps (Standard) in Visual Studio Code
3-
description: Create automated workflows to integrate apps, data, services, and systems with single-tenant Azure Logic Apps (Standard) in Visual Studio Code.
2+
title: Create Standard workflows in single-tenant Azure Logic Apps with Visual Studio Code
3+
description: Create logic app workflows that run in single-tenant Azure Logic Apps to automate integration tasks across apps, data, services, and systems using Visual Studio Code.
44
services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: how-to
8-
ms.date: 09/06/2022
8+
ms.date: 11/01/2022
99
ms.custom: ignite-fall-2021, engagement-fy23
10+
## As a logic apps developer, I want to create a Standard logic app workflow that runs in single-tenant Azure Logic Apps using Visual Studio Code.
1011
---
1112

12-
# Create an integration workflow with single-tenant Azure Logic Apps (Standard) in Visual Studio Code
13+
# Create a Standard logic app workflow for single-tenant Azure Logic Apps using Visual Studio Code
1314

1415
[!INCLUDE [logic-apps-sku-standard](../../includes/logic-apps-sku-standard.md)]
1516

16-
This article shows how to create an example automated integration workflow that runs in the *single-tenant* Azure Logic Apps environment by using Visual Studio Code with the **Azure Logic Apps (Standard)** extension. When you use this extension, you create a Standard logic app resource and workflow that provides the following capabilities:
17+
This how-to guide shows how to create an example integration workflow that runs in single-tenant Azure Logic Apps by using Visual Studio Code with the **Azure Logic Apps (Standard)** extension. Before you create this workflow, you'll create a Standard logic app resource, which provides the following capabilities:
1718

1819
* Your logic app can include multiple [stateful and stateless workflows](single-tenant-overview-compare.md#stateful-stateless).
1920

2021
* Workflows in the same logic app and tenant run in the same process as the Azure Logic Apps runtime, so they share the same resources and provide better performance.
2122

22-
* You can locally create, run, and test workflows in the Visual Studio Code development environment. You can deploy your logic app locally, to Azure, which includes the single-tenant Azure Logic Apps environment or App Service Environment v3 (ASEv3) - Windows plans only, and on-premises using containers, due to the Azure Logic Apps containerized runtime.
23+
* You can locally create, run, and test workflows using the Visual Studio Code development environment.
2324

24-
For more information about single-tenant Azure Logic Apps, review [Single-tenant versus multi-tenant and integration service environment](single-tenant-overview-compare.md).
25+
When you're ready, you can deploy your logic app to Azure where your workflow can run in the single-tenant Azure Logic Apps environment or in an App Service Environment v3 (ASEv3 - Windows plans only). You can also deploy and run your workflow anywhere that Kubernetes can run, including Azure, Azure Kubernetes Service, on premises, or even other cloud providers, due to the Azure Logic Apps containerized runtime. For more information about single-tenant Azure Logic Apps, review [Single-tenant versus multi-tenant and integration service environment](single-tenant-overview-compare.md#resource-environment-differences).
2526

2627
While the example workflow is cloud-based and has only two steps, you can create workflows from hundreds of operations that can connect a wide range of apps, data, services, and systems across cloud, on premises, and hybrid environments. The example workflow starts with the built-in Request trigger and follows with an Office 365 Outlook action. The trigger creates a callable endpoint for the workflow and waits for an inbound HTTPS request from any caller. When the trigger receives a request and fires, the next action runs by sending email to the specified email address along with selected outputs from the trigger.
2728

@@ -78,13 +79,22 @@ For more information, review the [Azurite documentation](https://github.com/Azur
7879

7980
* [C# for Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp), which enables F5 functionality to run your logic app.
8081

81-
* [Azure Functions Core Tools - 3.x version](https://github.com/Azure/azure-functions-core-tools/releases/tag/3.0.4585) by using the Microsoft Installer (MSI) version, which is `func-cli-X.X.XXXX-x*.msi`. Don't install the 4.x version, which isn't supported and won't work.
82-
83-
These tools include a version of the same runtime that powers the Azure Functions runtime, which the Azure Logic Apps (Standard) extension uses in Visual Studio Code.
82+
* [Azure Functions Core Tools - 3.x version](https://github.com/Azure/azure-functions-core-tools/releases/tag/3.0.4585) by using the Microsoft Installer (MSI) version, which is `func-cli-X.X.XXXX-x*.msi`. These tools include a version of the same runtime that powers the Azure Functions runtime, which the Azure Logic Apps (Standard) extension uses in Visual Studio Code.
8483

8584
> [!IMPORTANT]
86-
> If you have an installation that's earlier than these versions, uninstall that version first,
87-
> or make sure that the PATH environment variable points at the version that you download and install.
85+
>
86+
> If you have an installation that's earlier than these versions, uninstall that version first, or
87+
> make sure that the PATH environment variable points at the version that you download and install.
88+
>
89+
> Azure Functions v3 support is ending in late 2022. Starting mid-October 2022, new Standard logic app
90+
> workflows in the Azure portal automatically use Azure Functions v4. During November 2022, existing
91+
Standard workflows in the Azure portal are
92+
> automatically migrating to Azure Functions v4. Unless you deployed your Standard logic apps as
93+
> NuGet-based projects or pinned your logic apps to a specific bundle version, this upgrade is
94+
> designed to require no action from you nor have an impact at runtime.
95+
>
96+
> If the exceptions apply to you, or for more information about the approaching end for Azure Functions v3 support, see
97+
> [Azure Logic Apps Standard now supports Azure Functions v4](https://techcommunity.microsoft.com/t5/integrations-on-azure-blog/azure-logic-apps-standard-now-supports-azure-functions-v4/ba-p/3656072).
8898

8999
* [Azure Logic Apps (Standard) extension for Visual Studio Code](https://go.microsoft.com/fwlink/p/?linkid=2143167).
90100

0 commit comments

Comments
 (0)