Skip to content

Commit 07fe07e

Browse files
Merge pull request #278165 from ecfan/ai
Quickstart for Consumption workflow: Add tip for Azure Copilot
2 parents 7958807 + 8808f9a commit 07fe07e

File tree

1 file changed

+25
-9
lines changed

1 file changed

+25
-9
lines changed

articles/logic-apps/quickstart-create-example-consumption-workflow.md

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,41 @@ ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: quickstart
88
ms.custom: mode-ui
9-
ms.date: 05/16/2024
9+
ms.date: 06/13/2024
1010
#Customer intent: As a developer, I want to create my first example Consumption logic app workflow that runs in multitenant Azure Logic Apps using the Azure portal.
1111
---
1212

1313
# Quickstart: Create an example Consumption logic app workflow using the Azure portal
1414

1515
[!INCLUDE [logic-apps-sku-consumption](~/reusable-content/ce-skilling/azure/includes/logic-apps-sku-consumption.md)]
1616

17-
To create an automated workflow that performs tasks with multiple cloud services, this quickstart shows how to create an example workflow that integrates the following services, an RSS feed for a website and an email account. This example uses the **RSS** connector and the **Office 365 Outlook** connector. The **RSS** connector provides a trigger that you can use to check an RSS feed, based on a specific schedule. The **Office 365 Outlook** connector provides an action that sends an email for each new RSS item.
17+
To create an automated workflow that performs tasks with multiple cloud services, this quickstart shows how to create an example logic app workflow that integrates the following services, an RSS feed for a website and an email account.
18+
19+
This example specifically creates a Consumption logic app resource and workflow that runs in multitenant Azure Logic Apps. The example uses the **RSS** connector and the **Office 365 Outlook** connector. The **RSS** connector provides a trigger that you can use to check an RSS feed, based on a specific schedule. The **Office 365 Outlook** connector provides an action that sends an email for each new RSS item.
1820

1921
The following screenshot shows the high-level example workflow:
2022

2123
:::image type="content" source="media/quickstart-create-example-consumption-workflow/quickstart-workflow-overview.png" alt-text="Screenshot shows example workflow with RSS trigger named When a feed item is published, and with the Outlook action named Send an email." lightbox="media/quickstart-create-example-consumption-workflow/quickstart-workflow-overview.png":::
2224

23-
This example specifically creates a Consumption logic app resource and workflow that runs in multitenant Azure Logic Apps. To create a Standard logic app workflow that runs in single-tenant Azure Logic Apps instead, see [Create an example Standard logic app workflow using Azure portal](create-single-tenant-workflows-azure-portal.md). The connectors in this example are only two connectors among [1000+ connectors](/connectors/connector-reference/connector-reference-logicapps-connectors) that you can use in a workflow. While this example is cloud-based, Azure Logic Apps supports workflows that connect apps, data, services, and systems across cloud, on-premises, and hybrid environments.
25+
> [!TIP]
26+
>
27+
> To learn more, you can ask Azure Copilot these questions:
28+
>
29+
> - *What's a Consumption logic app workflow?*
30+
> - *What's the RSS connector?*
31+
> - *What's the Office 365 Outlook connector?*
32+
>
33+
> To find Azure Copilot, on the Azure toolbar, select **Copilot**.
34+
35+
The connectors in this example are only two connectors among [1000+ connectors](/connectors/connector-reference/connector-reference-logicapps-connectors) that you can use in a workflow. While this example is cloud-based, Azure Logic Apps supports workflows that connect apps, data, services, and systems across cloud, on-premises, and hybrid environments.
36+
37+
> [!NOTE]
38+
> To create a Standard logic app workflow that runs in single-tenant Azure Logic Apps instead, see
39+
> [Create an example Standard logic app workflow using Azure portal](create-single-tenant-workflows-azure-portal.md).
2440
25-
As you progress through this quickstart, you'll learn the following basic steps:
41+
As you progress through this quickstart, you'll learn the following basic high-level steps:
2642

27-
* Create a Consumption logic app resource that's hosted in multitenant Azure Logic Apps.
43+
* Create a Consumption logic app resource that is hosted in multitenant Azure Logic Apps.
2844
* Add a trigger that specifies when to run the workflow.
2945
* Add an action that performs a task after the trigger fires.
3046
* Run your workflow.
@@ -51,7 +67,7 @@ To create and manage a Consumption logic app workflow using other tools, see the
5167
> [create a Google client app to use for authentication with your Gmail connector](/connectors/gmail/#authentication-and-bring-your-own-application). For more information, see
5268
> [Data security and privacy policies for Google connectors in Azure Logic Apps](../connectors/connectors-google-data-security-privacy-policy.md).
5369
54-
* If you have a firewall that limits traffic to specific IP addresses, make sure that you set up your firewall 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 Azure Logic Apps in the Azure region where you create your logic app workflow.
70+
* If you have a firewall that limits traffic to specific IP addresses, make sure that you set up your firewall 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 that Azure Logic Apps uses in the Azure region where you create your logic app workflow.
5571

5672
This example uses the **RSS** and **Office 365 Outlook** connectors, which [run in global multitenant Azure and are managed by Microsoft](../connectors/managed.md). These connectors require that you set up your firewall to allow access for all the [managed connector outbound IP addresses](/connectors/common/outbound-ip-addresses) in the Azure region for your logic app resource.
5773

@@ -215,13 +231,13 @@ This example uses an Office 365 Outlook action that sends an email each time tha
215231

216232
## Test your workflow
217233

218-
To check that the workflow runs correctly, you can either wait for the trigger to fire after checking the RSS feed based on your specified schedule, or you can manually run the workflow.
234+
To check that the workflow runs correctly, you can either wait for the trigger to fire based on your specifed schedule, or you can manually run the workflow.
219235

220236
* On the designer toolbar, from the **Run** menu, select **Run**.
221237

222238
If the RSS feed has new items, your workflow sends an email for each new item. Otherwise, your workflow waits until the next interval to check the RSS feed again.
223239

224-
The following screenshot shows a sample email that's sent by the example workflow. The email includes the details from each trigger output that you selected plus the descriptive text that you included for each item.
240+
The following screenshot shows a sample email that the example workflow sends. The email includes the details from each trigger output that you selected plus the descriptive text that you included for each item.
225241

226242
:::image type="content" source="media/quickstart-create-example-consumption-workflow/monitor-rss-feed-email.png" alt-text="Screenshot shows Outlook and sample email received for new RSS feed item, along with item title, date published, and link." lightbox="media/quickstart-create-example-consumption-workflow/monitor-rss-feed-email.png":::
227243

@@ -231,7 +247,7 @@ If you don't receive emails from the workflow as expected:
231247

232248
* Check your email account's junk or spam folder, in case the message was incorrectly filtered.
233249

234-
* Make sure the RSS feed you're using has published items since the last scheduled or manual check.
250+
* Make sure the RSS feed you're using published items since the last scheduled or manual check.
235251

236252
## Clean up resources
237253

0 commit comments

Comments
 (0)