terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
- remove references to `databricks_table` resource in the docs - update privatelink workaround guide as auto-accept has been enabled - link to AAD tokens how-to - close #1609
- Removed some references to Unity Catalog being in preview as [Unity Catalog is GA](https://docs.databricks.com/release-notes/product/2022/august.html#unity-catalog-is-ga) - Fixed order of container and storage account in ADLS2 path
### Configuration ```hcl resource "databricks_table" "table" { provider = databricks.workspace name = "myview" catalog_name = "team_platform" schema_name = "test" table_type = "VIEW" view_definition = "create view team_platform.test.myview as select *...
### Configuration ```hcl # Copy-paste your Terraform configuration here resource "databricks_sql_visualization" "this" { for_each = { for k in var.visualization_list : k.name => k } query_id = databricks_sql_query.this[0].id name =...
### Configuration ```hcl # Copy-paste your Terraform configuration here resource "databricks_user" "data_lake" { user_name = "[email protected]" } ``` ### Expected Behavior Ignore or re-create user from SCIM or any other...
when attempting to move `databricks_sql_visualization.options` from inline `json` to a `file` reference: - `terraform plan` succeeds - `terraform apply` fails to apply `databricks_sql_visualization` but also strips `permissions` from `databricks_sql_query` and...
The docs [page](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/group) for resource_group states the following: > authenticate using AAD tokens on Azure deployments It would be good for this to be a link to documentation describing how...
### Configuration ```hcl resource "databricks_instance_pool" "my_job_pool" { provider = databricks.workspace instance_pool_name = "My Job Pool" min_idle_instances = 2 max_capacity = 8 node_type_id = data.databricks_node_type.smallest.id enable_elastic_disk = false idle_instance_autotermination_minutes = 5...
### Expected Behavior The terraform experimental exporter should fill in a value for the `maxTokenLifetimeDays` attribute ### Actual Behavior The exporter puts in an empty string "" when the workspace...
`node_type_id` was not exported from the terraform exporter. As a result, when making an attempt to import the cluster definition using the terraform plan command, the value was _(known after...