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

### Configuration terraform { required_providers { databricks = { source = "databricks/databricks" version = "1.39.0" } } } ### Expected Behavior Models with versions should get exported ### Actual Behavior...

exporter

## Changes ## Tests - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [...

### Configuration ```hcl # Copy-paste your Terraform configuration here ``` module "workspace" { source = "./modules/workspace" databricks_account_id = var.databricks_account_id region = var.region } module "catalogs_binding" { source = "./modules/catalog_bin" workspace_id...

As we switch to the Git folders that could be anywhere, traditional Repos will go away, and we won't need `repos` attribute anymore. Add deprecation warning and update docs correspondingly

feature
good first issue

Git folders are superset of Databricks Repos, so it makes sense to rename the resource in the next major version.

feature

## Changes - Added `databricks_automatic_cluster_update_workspace_setting` resource ## Tests - [x] `make test` run locally - [x] relevant change in `docs/` folder - [x] using Go SDK - [x] tested manually

Hi there, My provider configuration for databricks(GCP) is no longer working. When I run a terraform apply I get the following error. I'm trying to create an account level resource(databricks...

gcp
authentication

We're creating multiple external locations in terraform loop and also the grants for it. We're attaching different kind of grants for two different groups. We observe that these grants are...

### Configuration ```hcl provider "databricks" { alias = "mws" host = "url" account_id = var.databricks_external_id client_id = local.databricks_client_id client_secret = local.databricks_client_secret } resource "databricks_metastore" "metastore" { provider = databricks.mws name...

We cannot assign workspace level entitlements to a group in an Azure Databricks Workspace using the `databricks_entitlements` resource. This seemed to have been working less than a month ago. ###...