How to create Unity Catalog tables/views via Terraform?

DBedrenko
New Contributor III

Hello, there are a bunch of pages in the documentation that mention tables and views can be created via Terraform:

> You can also create a managed table by using the Databricks Terraform provider and databricks_table

But those links to `databricks_table` and `databricks_view` that lead to the TF provider documentation seems to say that these resources are no longer provided?

> Page Not Found: This documentation page doesn't exist for version 1.14.3 of the databricks provider.

Are the Databricks docs out of date? Then is there another way to create Unity Catalog tables or views via TF?

My concrete problem is I have some configuration data in Terraform files that needs to be used to create a specific view. The TF configuration is obviously not accessible from the Databricks workspace so I can't create the view from the workspace, hence I'm trying to create the view via TF where the configuration data is readily available.

I already create via TF the catalogs, schemas and everything else to set up Databricks.

If tables and views cannot be created via TF, is there some other way that data defined in TF files can be exposed to the Databricks workspace? Then I could create my views in the workspace environment (via Python or SQL).