Forum Discussion
Getting Started with Azure Purview using Purview Starter Kit, CLI and PowerShell !
What a good stuff there you have. However if someone wanted to deploy the starter kit v5 inside your own subscription via option 1. There are several things need to watch out for.
I manage to make it work in to make the script run in Windows Server 2019 with Powershell 7.1.5
Pre-requisite are (For those not very familiar)
- Azure CLI
- Azure Az PowerShell Module
If you happen to use resource group name call purview, then u will run into issue with Azure Data Factory, Azure Datalake and Azure Blob creation error because the name has been taken up. So u need to edit the name of Azure Datalake, Azure Blob and Azure Data Factory to make sure the name is unique.
You need to change it at RunStarterKitFullAuto.ps1 at line 14,15 and 16[string]$StorageBlobName = $ResourceGroup + "adcblobat",
[string]$AdlsGen2Name = $ResourceGroup + "adcadlsat",
[string]$DataFactoryName = $ResourceGroup + "adcfactoryat",
Change it to something that will give a unique name to avoid the error.
Also, if u wish to ensure all resources are in the same location, u need to change one more area at DemoScript.ps1 at line 19 which is hard coded to East US.
[string]$AzureStorageGen2Location= "Southeast Asia",
Thanks
Alvin
- arindambanNov 08, 2021MicrosoftHey many apologies, I had updated the code, but forgot to update this page since it was posted long time back,. the latest code is here : https://aka.ms/PurviewKickstart
Please check it out