You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/declarative-customization/site-design-overview.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: SharePoint site design and site script overview
3
3
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
5
5
localization_priority: Priority
6
6
---
7
7
@@ -130,7 +130,7 @@ Available actions include:
130
130
- Applying a theme
131
131
- Setting a site logo
132
132
- Adding links to quick launch or hub navigation
133
-
- Triggering a Microsoft Flow
133
+
- Triggering a Power Automate flow
134
134
- Installing a deployed solution from the app catalog
135
135
- Setting regional settings for the site
136
136
- Adding principals (users and groups) to SharePoint roles
@@ -248,27 +248,27 @@ The **WebTemplate** parameter set to the value 64 indicates registering this sit
248
248
249
249
For step-by-step information about creating a site design, see [Get started creating site designs](get-started-create-site-design.md).
250
250
251
-
## PnP provisioning and customization using Microsoft Flow
251
+
## PnP provisioning and customization using Power Automate
252
252
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.
254
254
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.
256
256
257
257
<br/>
258
258
259
259

260
260
261
261
The process works as follows:
262
262
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.
264
264
265
265
2. The flow sends a message to an Azure storage queue that you have configured.
266
266
267
267
3. The message triggers a call to an Azure function that you have configured.
268
268
269
269
4. The Azure function runs your custom script, such as the PnP provisioning engine, to apply your custom configurations.
270
270
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).
Copy file name to clipboardExpand all lines: docs/declarative-customization/site-design-pnp-provisioning.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Calling the PnP provisioning engine from a site script
3
3
description: Build a complete SharePoint site design using the PnP provisioning engine
4
-
ms.date: 11/27/2018
4
+
ms.date: 03/24/2020
5
5
localization_priority: Priority
6
6
---
7
7
@@ -14,7 +14,7 @@ This article describes how to create a site design that applies a PnP provisioni
14
14
The steps in this article use the following components:
15
15
16
16
- A site design and a site script
17
-
-Microsoft Flow
17
+
-Power Automate
18
18
- Azure Queue storage
19
19
- Azure Functions
20
20
- A SharePoint Framework (SPFx) solution
@@ -67,7 +67,7 @@ Next, trust the app, so that it has the appropriate access to your tenant:
67
67
68
68
## Create the Azure Queue storage
69
69
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.
71
71
72
72
To set up the Azure Queue storage:
73
73
@@ -85,7 +85,7 @@ To set up the Azure Queue storage:
85
85
86
86
To put a message in the queue, you need to create a flow.
87
87
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.
89
89
1. Choose **Search hundreds of connectors and triggers** to select your trigger.
90
90
1. Search for **Request**, and select **Request - When a HTTP Request is received**.
91
91
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.
313
313
314
314
## Verify the results
315
315
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.
317
317
318
318
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.
0 commit comments