Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create Databricks Cluster using ARM template

I want to create Databricks Cluster using ARM template. Is it supported ? If supported kindly provide some references.Following is the code to create Databricks workspace using ARM template

"resources": [
    {
      "type": "Microsoft.Databricks/workspaces",
      "name": "[parameters('workspaceName')]",
      "location": "[parameters('location')]",
      "apiVersion": "2018-04-01",
      "sku": {
        "name": "[parameters('pricingTier')]"      
      },
      "tags": {
        "ComponentID": "[parameters('tagComponentID')]",
        "Env": "[parameters('tagEnv')]"
      },
      "properties": {
        "ManagedResourceGroupId": "[concat(subscription().id, '/resourceGroups/', variables('managedResourceGroupName'))]"        
      }
    }
  ]
like image 246
kartik iyer Avatar asked Jun 10 '26 13:06

kartik iyer


1 Answers

AFAIK, creation of Data Bricks cluster is currently unsupported.

The same feedback shown here -> https://feedback.azure.com/forums/909463-azure-databricks/suggestions/35257819-expose-api-key-during-arm-deployment was shared directly with the responsible Azure feature team.

I recommend navigating to the above link and clicking the vote button to raise visibility and priority on this (or) post your feedback and idea to have ARM template for Data Bricks cluster creation under https://feedback.azure.com/forums/909463-azure-databricks.

For now, as a workaround you may automate Data Bricks cluster creation using Cluster REST API https://docs.azuredatabricks.net/api/latest/clusters.html#create.

Hope this helps!! Cheers!! :)

like image 71
KrishnaG-MSFT Avatar answered Jun 12 '26 11:06

KrishnaG-MSFT



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!