Skip to content

Commit ba6e949

Browse files
authored
Fix databricks_table docs (#1158)
Fixes #1113
1 parent b0893d9 commit ba6e949

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/resources/table.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ subcategory: "Unity Catalog"
77

88
Within a metastore, Unity Catalog provides a 3-level namespace for organizing data: Catalogs, databases (also called schemas), and tables / views.
99

10+
-> **Note** This resource has an evolving API, which will change in the upcoming versions of the provider in order to simplify user experience.
11+
1012
A `databricks_table` is contained within [databricks_schema](schema.md).
1113

1214
## Example Usage
@@ -34,10 +36,9 @@ resource "databricks_table" "thing" {
3436
provider = databricks.workspace
3537
name = "quickstart_table"
3638
catalog_name = databricks_catalog.sandbox.id
37-
schema_name = databricks_schema.things.id
39+
schema_name = databricks_schema.things.name
3840
table_type = "MANAGED"
3941
data_source_format = "DELTA"
40-
storage_location = ""
4142
column {
4243
name = "id"
4344
position = 0
@@ -73,6 +74,9 @@ The following arguments are required:
7374
* `properties` - (Optional) Extensible Table properties.
7475

7576
### `column` configuration block
77+
78+
-> **Note** `column` block would be simplified in future versions of provider
79+
7680
For table columns
7781
* `name` - User-visible name of column
7882
* `type_name` - Name of (outer) type

0 commit comments

Comments
 (0)