Skip to content

Commit a4ad093

Browse files
authored
Merge pull request #238652 from whhender/patch-109
Adding network capabilities for ARM
2 parents a180abd + e83a924 commit a4ad093

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

articles/purview/quickstart-ARM-create-microsoft-purview.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: 'Quickstart: Create a Microsoft Purview (formerly Azure Purview) account
33
description: This Quickstart describes how to create a Microsoft Purview (formerly Azure Purview) account using an ARM Template.
44
author: whhender
55
ms.author: whhender
6-
ms.date: 04/05/2022
6+
ms.date: 05/18/2023
77
ms.topic: quickstart
88
ms.service: purview
99
ms.custom: mode-arm, devx-track-arm-template
@@ -44,6 +44,44 @@ The template performs the following tasks:
4444

4545
* Creates a Microsoft Purview account in a specified resource group.
4646

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+
4785
## Open Microsoft Purview governance portal
4886

4987
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

Comments
 (0)