Skip to content

Commit bfbd4ec

Browse files
authored
Terminology cleanup
1 parent d794ecc commit bfbd4ec

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

articles/logic-apps/quickstart-create-logic-apps-with-visual-studio.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Quickstart - Create integration workflows with multi-tenant Azure Logic A
33
description: Create automated integration workflows with multi-tenant Azure Logic Apps and Visual Studio Code.
44
services: logic-apps
55
ms.suite: integration
6-
ms.reviewer: logicappspm
6+
ms.reviewer: azla
77
ms.topic: quickstart
88
ms.custom: mvc, mode-ui
99
ms.date: 07/21/2022
@@ -16,11 +16,11 @@ ms.date: 07/21/2022
1616

1717
This quickstart shows how to design, develop, and deploy automated workflows that integrate apps, data, systems, and services across enterprises and organizations by using multi-tenant [Azure Logic Apps](../logic-apps/logic-apps-overview.md) and Visual Studio. Although you can perform these tasks in the Azure portal, Visual Studio lets you add your logic apps to source control, publish different versions, and create Azure Resource Manager templates for different deployment environments. For more information about multi-tenant versus single-tenant model, review [Single-tenant versus multi-tenant and integration service environment](single-tenant-overview-compare.md).
1818

19-
If you're new to Azure Logic Apps and just want the basic concepts, try the [quickstart for creating a logic app in the Azure portal](../logic-apps/quickstart-create-first-logic-app-workflow.md). The Logic App Designer works similarly in both the Azure portal and Visual Studio.
19+
If you're new to Azure Logic Apps and just want the basic concepts, try the [quickstart for creating a logic app workflow in the Azure portal](quickstart-create-first-logic-app-workflow.md). The workflow designer works similarly in both the Azure portal and Visual Studio.
2020

21-
In this quickstart, you create the same logic app with Visual Studio as the Azure portal quickstart. You can also learn to [create an example app in Visual Studio Code](quickstart-create-logic-apps-visual-studio-code.md), and [create and manage logic apps via the Azure CLI](quickstart-logic-apps-azure-cli.md).This logic app monitors a website's RSS feed and sends email for each new item in that feed. Your finished logic app looks like this high-level workflow:
21+
In this quickstart, you create the same logic app workflow with Visual Studio as the Azure portal quickstart. You can also learn to [create an example logic app workflow in Visual Studio Code](quickstart-create-logic-apps-visual-studio-code.md), and [create and manage logic app workflows using the Azure CLI](quickstart-logic-apps-azure-cli.md). This logic app workflow monitors a website's RSS feed and sends email for each new item in that feed. Your finished logic app workflow looks like the following high-level workflow:
2222

23-
![Screenshot that shows the high-level workflow of a finished logic app.](./media/quickstart-create-logic-apps-with-visual-studio/high-level-workflow-overview.png)
23+
![Screenshot that shows the high-level workflow of a finished logic app workflow.](./media/quickstart-create-logic-apps-with-visual-studio/high-level-workflow-overview.png)
2424

2525
<a name="prerequisites"></a>
2626

@@ -49,19 +49,19 @@ In this quickstart, you create the same logic app with Visual Studio as the Azur
4949

5050
You can either download and install Azure Logic Apps Tools directly from the Visual Studio Marketplace, or learn [how to install this extension from inside Visual Studio](/visualstudio/ide/finding-and-using-visual-studio-extensions). Make sure that you restart Visual Studio after you finish installing.
5151

52-
* Access to the web while using the embedded Logic App Designer
52+
* Access to the web while using the embedded workflow designer
5353

5454
The designer needs an internet connection to create resources in Azure and to read properties and data from connectors in your logic app.
5555

56-
* An email account that's supported by Logic Apps, such as Outlook for Microsoft 365, Outlook.com, or Gmail. For other providers, review the [connectors list here](/connectors/). This example uses Office 365 Outlook. If you use a different provider, the overall steps are the same, but your UI might slightly differ.
56+
* An email account that's supported by Azure Logic Apps, such as Outlook for Microsoft 365, Outlook.com, or Gmail. For other providers, review the [connectors list here](/connectors/). This example uses Office 365 Outlook. If you use a different provider, the overall steps are the same, but your UI might slightly differ.
5757

5858
> [!IMPORTANT]
5959
> If you want to use the Gmail connector, only G-Suite business accounts can use this connector without restriction in logic apps.
6060
> If you have a Gmail consumer account, you can use this connector with only specific Google-approved services, or you can
6161
> [create a Google client app to use for authentication with your Gmail connector](/connectors/gmail/#authentication-and-bring-your-own-application).
6262
> For more information, see [Data security and privacy policies for Google connectors in Azure Logic Apps](../connectors/connectors-google-data-security-privacy-policy.md).
6363
64-
* If your logic app needs to communicate through a firewall that limits traffic to specific IP addresses, that firewall needs to allow access for *both* the [inbound](logic-apps-limits-and-config.md#inbound) and [outbound](logic-apps-limits-and-config.md#outbound) IP addresses used by the Logic Apps service or runtime in the Azure region where your logic app exists. If your logic app also uses [managed connectors](../connectors/managed.md), such as the Office 365 Outlook connector or SQL connector, or uses [custom connectors](/connectors/custom-connectors/), the firewall also needs to allow access for *all* the [managed connector outbound IP addresses](logic-apps-limits-and-config.md#outbound) in your logic app's Azure region.
64+
* If your logic app workflow needs to communicate through a firewall that limits traffic to specific IP addresses, that firewall needs to allow access for *both* the [inbound](logic-apps-limits-and-config.md#inbound) and [outbound](logic-apps-limits-and-config.md#outbound) IP addresses used by the Azure Logic Apps service or runtime in the Azure region where your logic app resource exists. If your logic app workflow also uses [managed connectors](../connectors/managed.md), such as the Office 365 Outlook connector or SQL connector, or uses [custom connectors](/connectors/custom-connectors/), the firewall also needs to allow access for *all* the [managed connector outbound IP addresses](logic-apps-limits-and-config.md#outbound) in your logic app resource's Azure region.
6565

6666
<a name="azure-government"></a>
6767

@@ -101,11 +101,11 @@ To get started, create an [Azure Resource Group project](../azure-resource-manag
101101

102102
1. On the **File** menu, select **New** > **Project**. (Keyboard: Ctrl + Shift + N)
103103

104-
![On "File" menu, select "New" > "Project"](./media/quickstart-create-logic-apps-with-visual-studio/create-new-visual-studio-project.png)
104+
![Screenshot showing Visual Studio "File" menu with "New" > "Project" selected.](./media/quickstart-create-logic-apps-with-visual-studio/create-new-visual-studio-project.png)
105105

106106
1. Under **Installed**, select **Visual C#** or **Visual Basic**. Select **Cloud** > **Azure Resource Group**. Name your project, for example:
107107

108-
![Create Azure Resource Group project](./media/quickstart-create-logic-apps-with-visual-studio/create-azure-cloud-service-project.png)
108+
![Screenshot showing how to create Azure Resource Group project.](./media/quickstart-create-logic-apps-with-visual-studio/create-azure-cloud-service-project.png)
109109

110110
> [!NOTE]
111111
> Resource group names can contain only letters, numbers,
@@ -123,19 +123,19 @@ To get started, create an [Azure Resource Group project](../azure-resource-manag
123123

124124
1. From the template list, select the **Logic App** template. Select **OK**.
125125

126-
![Select Logic App template](./media/quickstart-create-logic-apps-with-visual-studio/select-logic-app-template.png)
126+
![Screenshot showing the "Logic App" template selected.](./media/quickstart-create-logic-apps-with-visual-studio/select-logic-app-template.png)
127127

128128
After Visual Studio creates your project, Solution Explorer opens and shows your solution. In your solution, the **LogicApp.json** file not only stores your logic app definition but is also an Azure Resource Manager template that you can use for deployment.
129129

130-
![Solution Explorer shows new logic app solution and deployment file](./media/quickstart-create-logic-apps-with-visual-studio/logic-app-solution-created.png)
130+
![Screenshot showing Solution Explorer with new logic app solution and deployment file.](./media/quickstart-create-logic-apps-with-visual-studio/logic-app-solution-created.png)
131131

132132
## Create blank logic app
133133

134134
When you have your Azure Resource Group project, create your logic app with the **Blank Logic App** template.
135135

136136
1. In Solution Explorer, open the **LogicApp.json** file's shortcut menu. Select **Open With Logic App Designer**. (Keyboard: Ctrl + L)
137137

138-
![Open logic app .json file with Logic App Designer](./media/quickstart-create-logic-apps-with-visual-studio/open-logic-app-designer.png)
138+
![Screenshot showing the workflow designer with the opened logic app .json file.](./media/quickstart-create-logic-apps-with-visual-studio/open-logic-app-designer.png)
139139

140140
> [!TIP]
141141
> If you don't have this command in Visual Studio 2019, check that you have the latest updates for Visual Studio.
@@ -154,21 +154,21 @@ When you have your Azure Resource Group project, create your logic app with the
154154
| **Location** | **Same as Resource Group** | The location type and specific location for deploying your logic app. The location type is either an Azure region or an existing [integration service environment (ISE)](connect-virtual-network-vnet-isolated-environment.md). <p>For this quickstart, keep the location type set to **Region** and the location set to **Same as Resource Group**. <p>**Note**: After you create your resource group project, you can [change the location type and the location](manage-logic-apps-with-visual-studio.md#change-location), but different location type affects your logic app in various ways. |
155155
||||
156156

157-
1. The Logic Apps Designer opens a page that shows an introduction video and commonly used triggers. Scroll down past the video and triggers to **Templates**, and select **Blank Logic App**.
157+
1. The workflow designer opens a page that shows an introduction video and commonly used triggers. Scroll down past the video and triggers to **Templates**, and select **Blank Logic App**.
158158

159-
![Select "Blank Logic App"](./media/quickstart-create-logic-apps-with-visual-studio/choose-blank-logic-app-template.png)
159+
![Screenshot showing "Blank Logic App" selected.](./media/quickstart-create-logic-apps-with-visual-studio/choose-blank-logic-app-template.png)
160160

161161
## Build logic app workflow
162162

163-
Next, add an RSS [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) that fires when a new feed item appears. Every logic app starts with a trigger, which fires when specific criteria is met. Each time the trigger fires, the Logic Apps engine creates a logic app instance that runs your workflow.
163+
Next, add an RSS [trigger](../logic-apps/logic-apps-overview.md#logic-app-concepts) that fires when a new feed item appears. Every logic app starts with a trigger, which fires when specific criteria is met. Each time the trigger fires, the Azure Logic Apps engine creates a logic app instance that runs your workflow.
164164

165-
1. In Logic App Designer, under the search box, select **All**. In the search box, enter "rss". From the triggers list, select this trigger: **When a feed item is published**
165+
1. In workflow designer, under the search box, select **All**. In the search box, enter "rss". From the triggers list, select this trigger: **When a feed item is published**
166166

167-
![Build your logic app by adding a trigger and actions](./media/quickstart-create-logic-apps-with-visual-studio/add-trigger-logic-app.png)
167+
![Screenshot showing workflow designer with RSS trigger selected.](./media/quickstart-create-logic-apps-with-visual-studio/add-trigger-logic-app.png)
168168

169169
1. After the trigger appears in the designer, finish building the logic app by following the workflow steps in the [Azure portal quickstart](../logic-apps/quickstart-create-first-logic-app-workflow.md#add-rss-trigger), then return to this article. When you're done, your logic app looks like this example:
170170

171-
![Finished logic app](./media/quickstart-create-logic-apps-with-visual-studio/finished-logic-app-workflow.png)
171+
![Screenshot showing finished logic app workflow.](./media/quickstart-create-logic-apps-with-visual-studio/finished-logic-app-workflow.png)
172172

173173
1. Save your Visual Studio solution. (Keyboard: Ctrl + S)
174174

@@ -180,31 +180,31 @@ Before you can run and test your logic app, deploy the app to Azure from Visual
180180

181181
1. In Solution Explorer, on your project's shortcut menu, select **Deploy** > **New**. If prompted, sign in with your Azure account.
182182

183-
![Create logic app deployment](./media/quickstart-create-logic-apps-with-visual-studio/create-logic-app-deployment.png)
183+
![Screenshot showing project menu with "Deploy" > "New" selected.](./media/quickstart-create-logic-apps-with-visual-studio/create-logic-app-deployment.png)
184184

185185
1. For this deployment, keep the default Azure subscription, resource group, and other settings. Select **Deploy**.
186186

187-
![Deploy logic app to Azure resource group](./media/quickstart-create-logic-apps-with-visual-studio/select-azure-subscription-resource-group-deployment.png)
187+
![Screenshot showing project deployment box with "Deploy" selected.](./media/quickstart-create-logic-apps-with-visual-studio/select-azure-subscription-resource-group-deployment.png)
188188

189189
1. If the **Edit Parameters** box appears, provide a resource name for your logic app. Save your settings.
190190

191-
![Provide deployment name for logic app](./media/quickstart-create-logic-apps-with-visual-studio/edit-parameters-deployment.png)
191+
![Screenshot showing "Edit Parameters" box with resource name for logic app.](./media/quickstart-create-logic-apps-with-visual-studio/edit-parameters-deployment.png)
192192

193193
When deployment starts, your app's deployment status appears in the Visual Studio **Output** window. If the status doesn't appear, open the **Show output from** list, and select your Azure resource group.
194194

195-
![Deployment status output](./media/quickstart-create-logic-apps-with-visual-studio/logic-app-output-window.png)
195+
![Screenshot showing "Output" window with deployment status output.](./media/quickstart-create-logic-apps-with-visual-studio/logic-app-output-window.png)
196196

197197
If your selected connectors need input from you, a PowerShell window opens in the background and prompts for any necessary passwords or secret keys. After you enter this information, deployment continues.
198198

199-
![PowerShell window](./media/quickstart-create-logic-apps-with-visual-studio/logic-apps-powershell-window.png)
199+
![Screenshot showing PowerShell window with prompt to provide connection credentials.](./media/quickstart-create-logic-apps-with-visual-studio/logic-apps-powershell-window.png)
200200

201-
After deployment finishes, your logic app is live in the Azure portal and runs on your specified schedule (every minute). If the trigger finds new feed items, the trigger fires, which creates a workflow instance that runs your logic app's actions. Your logic app sends email for each new item. Otherwise, if the trigger doesn't find new items, the trigger doesn't fire and "skips" instantiating the workflow. Your logic app waits until the next interval before checking.
201+
After deployment finishes, your logic app is live in the Azure portal and runs on your specified schedule (every minute). If the trigger finds new feed items, the trigger fires and creates a workflow instance that runs your logic app workflow's actions. Your workflow sends email for each new item. Otherwise, if the trigger doesn't find new items, the trigger doesn't fire and "skips" instantiating the workflow. Your workflow waits until the next interval before checking.
202202

203-
Here are sample emails that this logic app sends. If you don't get any emails, check your junk email folder.
203+
Here are sample emails that this workflow sends. If you don't get any emails, check your junk email folder.
204204

205205
![Outlook sends email for each new RSS item](./media/quickstart-create-logic-apps-with-visual-studio/outlook-email.png)
206206

207-
Congratulations, you've successfully built and deployed your logic app with Visual Studio. To manage your logic app and review its run history, see [Manage logic apps with Visual Studio](../logic-apps/manage-logic-apps-with-visual-studio.md).
207+
Congratulations, you've successfully built and deployed your logic app workflow with Visual Studio. To manage your logic app workflow and review its run history, see [Manage logic apps with Visual Studio](manage-logic-apps-with-visual-studio.md).
208208

209209
## Add new logic app
210210

@@ -216,11 +216,11 @@ When you have an existing Azure Resource Group project, you can add a new blank
216216

217217
1. To add a resource to the template file, select **Add Resource** at the top of the JSON Outline window. Or in the JSON Outline window, open the **resources** shortcut menu, and select **Add New Resource**.
218218

219-
![JSON Outline window](./media/quickstart-create-logic-apps-with-visual-studio/json-outline-window-add-resource.png)
219+
![Screenshot showing the "JSON Outline" window](./media/quickstart-create-logic-apps-with-visual-studio/json-outline-window-add-resource.png)
220220

221-
1. In the **Add Resource** dialog box, in the search box, find `logic app`, and select **Logic App**. Name your logic app, and select **Add**.
221+
1. In the **Add Resource** dialog box, in the search box, find `logic app`, and select **Logic App**. Name your logic app resource, and select **Add**.
222222

223-
![Add resource](./media/quickstart-create-logic-apps-with-visual-studio/add-logic-app-resource.png)
223+
![Screenshot showing steps to add resource.](./media/quickstart-create-logic-apps-with-visual-studio/add-logic-app-resource.png)
224224

225225
## Clean up resources
226226

@@ -232,13 +232,13 @@ When you're done with your logic app, delete the resource group that contains yo
232232

233233
1. On the **Overview** page, select **Delete resource group**. Enter the resource group name as confirmation, and select **Delete**.
234234

235-
!["Resource groups" > "Overview" > "Delete resource group"](./media/quickstart-create-logic-apps-with-visual-studio/clean-up-resources.png)
235+
![Screenshot showing "Resource groups" > "Overview" > "Delete resource group" selected.](./media/quickstart-create-logic-apps-with-visual-studio/clean-up-resources.png)
236236

237237
1. Delete the Visual Studio solution from your local computer.
238238

239239
## Next steps
240240

241-
In this article, you built, deployed, and ran your logic app with Visual Studio. To learn about managing and performing advanced deployment for logic apps with Visual Studio, see these articles:
241+
In this article, you built, deployed, and ran your logic app workflow with Visual Studio. To learn about managing and performing advanced deployment for logic apps with Visual Studio, see these articles:
242242

243243
> [!div class="nextstepaction"]
244244
> [Manage logic apps with Visual Studio](../logic-apps/manage-logic-apps-with-visual-studio.md)

0 commit comments

Comments
 (0)