Skip to content

Commit

Permalink
Added clarification that databricks_schema and `databricks_sql_tabl…
Browse files Browse the repository at this point in the history
…e` should be imported by their full name, not just by name (#2491)

Co-authored-by: Miles Yucht <miles@databricks.com>
  • Loading branch information
alexott and mgyucht committed Jul 24, 2023
1 parent 2f6a307 commit 7541e65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ The following arguments are required:

## Import

This resource can be imported by name:
This resource can be imported by its full name:

```bash
$ terraform import databricks_schema.this <name>
$ terraform import databricks_schema.this <catalog_name>.<name>
```

## Related Resources
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/sql_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ Currently, changing the column definitions for a table will require dropping and

## Import

This resource can be imported by name:
This resource can be imported by its full name:

```bash
$ terraform import databricks_sql_table.this <name>
$ terraform import databricks_sql_table.this <catalog_name>.<schema_name>.<name>
```

0 comments on commit 7541e65

Please sign in to comment.