Retrieves a list of databricks_sql_endpoint ids, that were created by Terraform or manually.
Retrieve IDs for all SQL warehouses:
data "databricks_sql_warehouses" "all" {
}
Retrieve IDs for all clusters having "Shared" in the warehouse name:
data "databricks_sql_warehouses" "all_shared" {
warehouse_name_contains = "shared"
}
warehouse_name_contains
- (Optional) Only return databricks_sql_endpoint ids that match the given name string.This data source exports the following attributes:
ids
- list of databricks_sql_endpoint idsThe following resources are often used in the same context: