Purview ARM templates

Ian Santillan 197 Reputation points
2021-10-20T14:00:52.01+00:00

2Mh4wa8.png

why are Purview ARM templates not available?

Microsoft Purview
Microsoft Purview
A Microsoft data governance service that helps manage and govern on-premises, multicloud, and software-as-a-service data. Previously known as Azure Purview.
1,164 questions
0 comments No comments
{count} votes

Accepted answer
  1. PRADEEPCHEEKATLA-MSFT 89,376 Reputation points Microsoft Employee
    2021-10-21T03:51:24.597+00:00

    Hello @notyourninja,

    Thanks for the question and using MS Q&A platform.

    Currently, there is no ARM template available in Azure Quickstart Templates section or in Azure Purview Documentation.

    We are reaching out to the internal team to create the ARM templates for Azure Purview. I will be update you once I hear back from the team.

    Meanwhile, you can create a new Azure Purview account and download or Add to library(preview) the template from deployment.

    142309-image.png

    OR

    You can Download the ARMTemplate-Microsoft.PurviewAccount and create using "Deploy a custom template" option from Azure Portal and select the downloaded template file.

    142245-purview-armtemplate.gif

    ARM Template to create Azure Purview Account:

    {  
        "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",  
        "contentVersion": "1.0.0.0",  
        "parameters": {  
            "name": {  
                "type": "String"  
            },  
            "location": {  
                "type": "String"  
            }  
        },  
        "variables": {},  
        "resources": [  
            {  
                "type": "Microsoft.Purview/accounts",  
                "apiVersion": "2021-07-01",  
                "name": "[parameters('name')]",  
                "location": "[parameters('location')]",  
                "dependsOn": [],  
                "tags": {},  
                "sku": {  
                    "name": "Standard",  
                    "capacity": 1  
                },  
                "identity": {  
                    "type": "SystemAssigned"  
                },  
                "properties": {  
                    "publicNetworkAccess": "Enabled",  
                    "managedResourceGroupName": "managed-rg-cheprademo"  
                }  
            }  
        ],  
        "outputs": {}  
    }  
    

    Hope this will help. Please let us know if any further queries.

    ------------------------------

    • Please don't forget to click on 130616-image.png or upvote 130671-image.png button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is how
    • Want a reminder to come back and check responses? Here is how to subscribe to a notification
    • If you are interested in joining the VM program and help shape the future of Q&A: Here is how you can be part of Q&A Volunteer Moderators

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.