subcategory |
---|
Delta Sharing |
Retrieves a list of databricks_share name, that were created by Terraform or manually.
Getting all existing shares in the metastore
data "databricks_shares" "this" {}
output "share_name" {
value = data.databricks_shares.this.shares
sensitive = false
}
This data source exports the following attributes:
shares
- list of databricks_share names.
The following resources are used in the same context:
- databricks_share to create Delta Sharing shares.
- databricks_recipient to create Delta Sharing recipients.
- databricks_grants to manage Delta Sharing permissions.