Is it possible to create Azure Databricks Cluster using PowerShell script?

Viewed 229

Is it possible to create Azure Databricks Cluster using Powershell?

Only ARM supported to create Azure Databricks basic level. but I need to do automation to creation of Databricks cluster.

1 Answers

You can use the azure.databricks.cicd.tools module:

Install-Module -Name azure.databricks.cicd.tools -Scope CurrentUser

Inside the module there is a command to create cluster:

New-DatabricksCluster

More info about the module and command list you can find here.

Related