databricks_pipelines Data Source

Retrieves a list of all databricks_pipeline (Delta Live Tables) ids deployed in a workspace, or those matching the provided search term. Maximum 100 results.

Example Usage

Get all Delta Live Tables pipelines:

data "databricks_pipelines" "all" {}

output "all_pipelines" {
  value = data.databricks_pipelines.all.ids
}

Filter Delta Live Tables pipelines by name (exact match):

data "databricks_pipelines" "this" {
  pipeline_name = "my_pipeline"
}

output "my_pipeline" {
  value = data.databricks_pipelines.this.ids
}

Filter Delta Live Tables pipelines by name (wildcard search):

data "databricks_pipelines" "this" {
  pipeline_name = "%pipeline%"
}

output "wildcard_pipelines" {
  value = data.databricks_pipelines.this.ids
}

Argument Reference

This data source exports the following attributes:

Attribute Reference

This data source exports the following attributes:

The following resources are used in the same context: