Azure Databricks
Overview
Real-life Use Cases
Terraform Example
resource "azurerm_databricks_workspace" "main" {
name = "mydatabricks"
location = azurerm_resource_group.main.location
resource_group_name = azurerm_resource_group.main.name
sku = "standard"
}Bicep Example
resource databricks 'Microsoft.Databricks/workspaces@2023-05-01' = {
name: 'mydatabricks'
location: resourceGroup().location
sku: {
name: 'standard'
}
properties: {}
}Azure CLI Example
Best Practices
Common Pitfalls
Last updated