You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add `datarbicks_directory` data source
It will be necessary for adding `parent` attribute to SQL queries/dashboards, especially
in exporter
* improve test coverage for `databricks_notebook` data source
-> **Note** If you have a fully automated setup with workspaces created by [databricks_mws_workspaces](../resources/mws_workspaces.md) or [azurerm_databricks_workspace](https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/databricks_workspace), please make sure to add [depends_on attribute](../index.md#data-resources-and-authentication-is-not-configured-errors) in order to prevent _authentication is not configured for provider_ errors.
7
+
8
+
This data source allows to get information about a directory in a Databricks Workspace.
9
+
10
+
## Example Usage
11
+
12
+
```hcl
13
+
data "databricks_notebook" "prod" {
14
+
path = "/Production"
15
+
}
16
+
```
17
+
18
+
## Argument Reference
19
+
20
+
*`path` - (Required) Path to a directory in the workspace
21
+
22
+
## Attribute Reference
23
+
24
+
This data source exports the following attributes:
0 commit comments