Sudhir
Sudhir

Reputation: 69

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

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.

Upvotes: 2

Views: 960

Answers (1)

Shayki Abramczyk
Shayki Abramczyk

Reputation: 41765

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.

Upvotes: 1

Related Questions