terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
1. SQL warehouse names with parenthesis in them get removed in the export 1. Exported SQL endpoints do not include the `enable_serverless_compute` flag ### Configuration ```hcl resource "databricks_sql_endpoint" "serverless_warehouse" {...
### Configuration ```hcl variable "example_sps" { type = set(object({ name = string user_group_names = optional(set(string), []) })) description = "Azure service principal display names and user groups in Databricks" default...
### Configuration ```hcl resource "databricks_sql_table" "thing" { name = "table_name catalog_name = "catalog_name" schema_name = "schema_name" table_type = "EXTERNAL" data_source_format = "DELTA" storage_location = var.s3_location warehouse_id = "warehouseid" column {...
### Use-cases Be able to define Identity column on a table the `databricks_sql_table` needs some means to define identity columns. After the release of provider version 1.40 it seems impossible...
I'm unable to enable account-level groups at the workspace level in our Azure Databricks deployment. Context: - I've configured SCIM provisioning using Azure AD according to the [documentation](https://learn.microsoft.com/en-us/azure/databricks/administration-guide/users-groups/scim/aad). - I've...
#### Issue Description: It seems that the Terraform exporter is exporting pools that are no longer present in the workspace. We encountered an error indicating that the "pool_name" was empty....
### Configuration ```hcl resource "databricks_share" "delta_share" { provider = databricks.workspace name = var.delta_share_name owner = var.owner_name } ``` var.owner_name is set to the name of our workspace admin group ###...
See https://docs.databricks.com/en/libraries/workspace-files-libraries.html The `databricks_library` provider should have a `workspace` block taking a `path` to the workspace file. This is particularly relevant given DBR15's ability to [support `requirements.txt` files](https://docs.databricks.com/en/release-notes/runtime/15.0.html#cluster-libraries-now-support-requirementstxt-files) Sample syntax:...
## Changes This PR solves the problem described here: https://github.com/databricks/terraform-provider-databricks/pull/3330 empty new lines on view_definition cause terraform to plan to change the view definition. This PR adds the removal of...
### Use-cases I want to be able to get all users provisioned to my Databricks account (or, depending on provider configuration, workspace). My use case is adding them to a...