databricks_cluster Data Source

Retrieves information about a databricks_cluster using its id. This could be retrieved programmatically using databricks_clusters data source.

Example Usage

Retrieve attributes of each SQL warehouses in a workspace

data "databricks_clusters" "all" {
}

data "databricks_cluster" "all" {
  for_each   = data.databricks_clusters.ids
  cluster_id = each.value
}

Argument Reference

Attribute Reference

This data source exports the following attributes:

The following resources are often used in the same context: