subcategory |
---|
Unity Catalog |
-> Note If you have a fully automated setup with workspaces created by databricks_mws_workspaces or azurerm_databricks_workspace, please make sure to add depends_on attribute in order to prevent authentication is not configured for provider errors.
Retrieves a list of databricks_catalog ids, that were created by Terraform or manually, so that special handling could be applied.
Listing all catalogs:
data "databricks_catalogs" "all" {}
output "all_catalogs" {
value = data.databricks_catalogs.all
}
This data source exports the following attributes:
ids
- set of databricks_catalog names
The following resources are used in the same context:
- databricks_table to manage tables within Unity Catalog.
- databricks_schema to manage schemas within Unity Catalog.
- databricks_catalog to manage catalogs within Unity Catalog.