Skip to content

Commit 3ad4a76

Browse files
Merge pull request SharePoint#5477 from a1mery/patch-2
Replace Microsoft Flow by Power Automate
2 parents d8ea491 + 7b3fe10 commit 3ad4a76

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

docs/declarative-customization/site-design-overview.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint site design and site script overview
33
description: Use SharePoint site scripts and site designs to provide custom configurations to apply when new sites are created.
4-
ms.date: 12/19/2018
4+
ms.date: 03/24/2020
55
localization_priority: Priority
66
---
77

@@ -130,7 +130,7 @@ Available actions include:
130130
- Applying a theme
131131
- Setting a site logo
132132
- Adding links to quick launch or hub navigation
133-
- Triggering a Microsoft Flow
133+
- Triggering a Power Automate flow
134134
- Installing a deployed solution from the app catalog
135135
- Setting regional settings for the site
136136
- Adding principals (users and groups) to SharePoint roles
@@ -248,27 +248,27 @@ The **WebTemplate** parameter set to the value 64 indicates registering this sit
248248
249249
For step-by-step information about creating a site design, see [Get started creating site designs](get-started-create-site-design.md).
250250

251-
## PnP provisioning and customization using Microsoft Flow
251+
## PnP provisioning and customization using Power Automate
252252

253-
One action provided by site scripts is the ability to trigger a Microsoft Flow. This allows you to specify any custom action that you need beyond the actions provided natively in site scripts.
253+
One action provided by site scripts is the ability to trigger a Power Automate flow. This allows you to specify any custom action that you need beyond the actions provided natively in site scripts.
254254

255-
If you use the PnP provisioning engine to automate site creation, you can use a Microsoft Flow to integrate with site designs. You can maintain all your existing provisioning scripts as well as create new custom provisioning scripts by using this technique.
255+
If you use the PnP provisioning engine to automate site creation, you can use a Power Automate flow to integrate with site designs. You can maintain all your existing provisioning scripts as well as create new custom provisioning scripts by using this technique.
256256

257257
<br/>
258258

259259
![Process of triggering a Microsoft Flow](images/process-for-triggering-a-custom-flow.png)
260260

261261
The process works as follows:
262262

263-
1. The script instantiates your Microsoft Flow using a URL with additional details.
263+
1. The script instantiates your Power Automate flow using a URL with additional details.
264264

265265
2. The flow sends a message to an Azure storage queue that you have configured.
266266

267267
3. The message triggers a call to an Azure function that you have configured.
268268

269269
4. The Azure function runs your custom script, such as the PnP provisioning engine, to apply your custom configurations.
270270

271-
For a step-by-step tutorial about how to configure your own Microsoft Flow with PnP provisioning, see [Build a complete site design using the PnP provisioning engine](site-design-pnp-provisioning.md).
271+
For a step-by-step tutorial about how to configure your own Power Automate flow with PnP provisioning, see [Build a complete site design using the PnP provisioning engine](site-design-pnp-provisioning.md).
272272

273273
## Scoping
274274

docs/declarative-customization/site-design-pnp-provisioning.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Calling the PnP provisioning engine from a site script
33
description: Build a complete SharePoint site design using the PnP provisioning engine
4-
ms.date: 11/27/2018
4+
ms.date: 03/24/2020
55
localization_priority: Priority
66
---
77

@@ -14,7 +14,7 @@ This article describes how to create a site design that applies a PnP provisioni
1414
The steps in this article use the following components:
1515

1616
- A site design and a site script
17-
- Microsoft Flow
17+
- Power Automate
1818
- Azure Queue storage
1919
- Azure Functions
2020
- A SharePoint Framework (SPFx) solution
@@ -67,7 +67,7 @@ Next, trust the app, so that it has the appropriate access to your tenant:
6767

6868
## Create the Azure Queue storage
6969

70-
In this section, you will use Azure Queue storage to receive messages from Microsoft Flow. Every time a message shows up in the Queue storage, an Azure function is triggered to run a PowerShell script.
70+
In this section, you will use Azure Queue storage to receive messages from Power Automate. Every time a message shows up in the Queue storage, an Azure function is triggered to run a PowerShell script.
7171

7272
To set up the Azure Queue storage:
7373

@@ -85,7 +85,7 @@ To set up the Azure Queue storage:
8585

8686
To put a message in the queue, you need to create a flow.
8787

88-
1. Go to the [Microsoft Flow](https://flow.microsoft.com) site, sign in, and choose **Create from Blank** at the top of the page.
88+
1. Go to the [Power Automate](https://flow.microsoft.com) site, sign in, and choose **Create from Blank** at the top of the page.
8989
1. Choose **Search hundreds of connectors and triggers** to select your trigger.
9090
1. Search for **Request**, and select **Request - When a HTTP Request is received**.
9191
1. Enter the following JSON as your request body:
@@ -313,7 +313,7 @@ The **Add-SPOSiteDesign** cmdlet associates the site design with the team site.
313313

314314
## Verify the results
315315

316-
After you created your Azure Queue storage, you created the app ID for app-only access, the Azure Function, and the site design. You then triggered the Microsoft Flow from the site design.
316+
After you created your Azure Queue storage, you created the app ID for app-only access, the Azure Function, and the site design. You then triggered the Power Automate flow from the site design.
317317

318318
To test the results, create a new site. In your SharePoint tenant, select **SharePoint** > **Create Site** > **Team Site**. Your new site design should show up as a design option. Notice that the site design is applied after the site is created. If you configured it correctly, your flow will be triggered. You can check the run history of the flow to verify that it ran correctly. Note that the footer might not show up immediately; if you don't see it, wait a minute and reload your site to check again.
319319

0 commit comments

Comments
 (0)