Retrieves details about a databricks_share that were created by Terraform or manually.
Getting details of an existing share in the metastore
data "databricks_share" "this" {
name = "this"
}
output "created_by" {
value = data.databricks_share.this.created_by
sensitive = false
}
name
- (Required) The name of the shareThis data source exports the following attributes:
created_at
- Time when the share was created.created_by
- The principal that created the share.object
- arrays containing details of each object in the share.
name
- Full name of the object being shared.data_object_type
- Type of the object.comment
- Description about the object.The following resources are used in the same context: