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.
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
}
This data source exports the following attributes:
pipeline_name
- (Optional) Filter Delta Live Tables pipelines by name for a given search term. %
is the supported wildcard operator.This data source exports the following attributes:
ids
- List of ids for Delta Live Tables pipelines matching the provided search criteria.The following resources are used in the same context: