Retrieves a list of databricks_schema ids, that were created by Terraform or manually, so that special handling could be applied.
Listing all schemas in a _sandbox_ databricks_catalog:
data "databricks_schemas" "sandbox" {
catalog_name = "sandbox"
}
output "all_sandbox_schemas" {
value = data.databricks_schemas.sandbox
}
catalog_name
- (Required) Name of databricks_catalogThis data source exports the following attributes:
ids
- set of databricks_schema full names: catalog
.schema
The following resources are used in the same context: