azurerm_databricks_workspace

Manages a Databricks Workspace

Example Usage

resource "azurerm_resource_group" "example" {
  name     = "example-resources"
  location = "West Europe"
}

resource "azurerm_databricks_workspace" "example" {
  name                = "databricks-test"
  resource_group_name = azurerm_resource_group.example.name
  location            = azurerm_resource_group.example.location
  sku                 = "standard"

  tags = {
    Environment = "Production"
  }
}

Argument Reference

The following arguments are supported:


A custom_parameters block supports the following:

Example HCL Configurations

Attributes Reference

In addition to the Arguments listed above - the following Attributes are exported:


A managed_disk_identity block exports the following:


A storage_account_identity block exports the following:

Timeouts

The timeouts block allows you to specify timeouts for certain actions:

Import

Databrick Workspaces can be imported using the resource id, e.g.

terraform import azurerm_databricks_workspace.workspace1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Databricks/workspaces/workspace1