Retrieves a list of databricks_volume ids (full names), that were created by Terraform or manually.
Listing all volumes in a _things_ databricks_schema of a _sandbox_ databricks_catalog:
data "databricks_volumes" "this" {
catalog_name = "sandbox"
schema_name = "things"
}
output "all_volumes" {
value = data.databricks_volumes.this
}
catalog_name
- (Required) Name of databricks_catalogschema_name
- (Required) Name of databricks_schemaThis data source exports the following attributes:
ids
- a list of databricks_volume full names: catalog
.schema
.volume
The following resources are used in the same context: