terraform-provider-databricks icon indicating copy to clipboard operation
terraform-provider-databricks copied to clipboard

Databricks Terraform Provider

Results 561 terraform-provider-databricks issues
Sort by recently updated
recently updated
newest added

Hi, I'm encountering an issue with the IMPORTED `databricks_mlflow_model` resource. Here's my scenario: initially, we manually created the Model Registry. Then, we opted to migrate it to Terraform using the...

### Use-cases Parameterise selecting node types from a set of criteria ### Attempted Solutions ``` data "databricks_node_type" "general_purpose_graviton_large" { category = "General Purpose" graviton = true min_cores = 2 }...

feature

## Changes PoC to introduce plugin framework. It's WIP, need to verify a few things and test E2E manually ## Tests 1. [x] Existing Unit tests passes 2. [ ]...

### Use-cases We create multiple databricks workspaces in our Terraform setup. This is driven by configuration files. We also create different key vaults for different user groups that need to...

feature

### Proposal Similar to existing key value definitions in `databricks_sql_table` like [options](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_table#options) or [properties](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_table#properties) proposal is to have `tags` attribute: ```hcl databricks_sql_table { name = "test_table" ... tags = {...

feature

## Changes In our (private) Terraform module we were trying to configure grants using the `databricks_grants` resource, but kept running into trouble on apply because it detected duplicate grants to...

### Use-cases [databricks_catalog_workspace_binding](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/catalog_workspace_binding) objects do not detect configuration drift such as additional bindings added outside of IAC, which would be very useful to have in the style of [databricks_grants](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/grants). ###...

feature

When provisioning databricks_grant resources (and I believe the same thing occurs on databricks_grants (plural) resources, though this is less extensively tested), the resources seem to get created fine on Databricks,...

### Configuration * Azure Databricks Premium SKU * A service principal does the terraform deployment with the following RBAC roles: * On the resource group where the Databricks workspace is...

## Changes Remove empty lines to avoid triggering unchanged diff detection. Related to this issue. https://github.com/databricks/terraform-provider-databricks/issues/3019 TrimSpace solve the issue but if there are empty new lines inside the SQL...