@@ -3,7 +3,7 @@ title: 'Quickstart: Create a Microsoft Purview (formerly Azure Purview) account
3
3
description : This Quickstart describes how to create a Microsoft Purview (formerly Azure Purview) account using an ARM Template.
4
4
author : whhender
5
5
ms.author : whhender
6
- ms.date : 04/ 05/2022
6
+ ms.date : 05/18/2023
7
7
ms.topic : quickstart
8
8
ms.service : purview
9
9
ms.custom : mode-arm, devx-track-arm-template
@@ -44,6 +44,44 @@ The template performs the following tasks:
44
44
45
45
* Creates a Microsoft Purview account in a specified resource group.
46
46
47
+ ## Customize network settings for your account
48
+
49
+ When you're deploying your ARM template, you can also use the following settings in the template to manage your public network access settings:
50
+
51
+ - ** Enabled for all networks**
52
+ `"publicNetworkAccess": "Enabled",
53
+ "managedResourcesPublicNetworkAccess": "Enabled" `
54
+ - ** Disabled for ingestion only (Preview)**
55
+ `"publicNetworkAccess": "Enabled",
56
+ "managedResourcesPublicNetworkAccess": "Disabled" `
57
+ - ** Disabled from all networks**
58
+ `"publicNetworkAccess": "Disables",
59
+ "managedResourcesPublicNetworkAccess": "Disabled" `
60
+
61
+ For example:
62
+ `
63
+ "resources": [
64
+ {
65
+ "type": "Microsoft.Purview/accounts",
66
+ "apiVersion": "2021-12-01",
67
+ "name": "[ parameters('purviewName')] ",
68
+ "location": "[ parameters('location')] ",
69
+ "sku": {
70
+ "name": "Standard",
71
+ "capacity": 1
72
+ },
73
+ "identity": {
74
+ "type": "SystemAssigned"
75
+ },
76
+ "properties": {
77
+ "publicNetworkAccess": "Enabled",
78
+ "managedResourcesPublicNetworkAccess": "Enabled"
79
+ "managedResourceGroupName": "[ format('managed-rg-{0}', parameters('purviewName'))] "
80
+ }
81
+ }
82
+ ]
83
+ `
84
+
47
85
## Open Microsoft Purview governance portal
48
86
49
87
After your Microsoft Purview account is created, you'll use the Microsoft Purview governance portal to access and manage it. There are two ways to open Microsoft Purview governance portal:
0 commit comments