This template creates a proof of concept environment for Azure Synapse, including SQL Pools and optional Apache Spark Pools
This Azure Resource Manager template was created by a member of the community and not by Microsoft. Each Resource Manager template is licensed to you under a license agreement by its owner, not Microsoft. Microsoft is not responsible for Resource Manager templates provided and licensed by community members and does not screen for security, compatibility, or performance. Community Resource Manager templates are not supported under any Microsoft support program or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
_artifactsLocation | (no description available) |
_artifactsLocationSASToken | (no description available) |
location | Location for your deployment. |
companyTla | This is a Three Letter Acronym for your company name. 'CON' for Contoso for example. |
allowAllConnections | (no description available) |
sparkDeployment | 'True' deploys an Apache Spark pool as well as a SQL pool. 'False' does not deploy an Apache Spark pool. |
sparkNodeSize | This parameter will determine the node size if SparkDeployment is true |
deploymentType | Specify deployment type: DevTest, POC, Prod, Shared. This will also be used in the naming convention. |
sqlAdministratorLogin | The username of the SQL Administrator |
sqlAdministratorLoginPassword | The password for the SQL Administrator |
sku | Select the SKU of the SQL pool. |
metadataSync | Choose whether you want to synchronise metadata. |
Frequency | Choose whether to run schedule every day of the week, or only on weekdays |
TIME_ZONE | Timezone for the schedule. Consult https://msdn.microsoft.com/en-us/library/ms912391(v=winembedded.11).aspx for more information |
ResumeTime | Time of Day when the data warehouse will be resumed |
PauseTime | Time of day when the data warehouse will be paused |
Use the template
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and configure Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.synapse/synapse-poc/azuredeploy.json
Command line
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstall and Configure the Azure Cross-Platform Command-Line Interface
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.synapse/synapse-poc/azuredeploy.json