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

## Changes Objects in share resource is a list which leads to issues when they are added / removed due to ordering. This PR makes them as set and sets...

## Changes We are trying to see whether using CustomizeDiff works since using force_new isn't for any object update isn't feasible. This is a followup to the PR: https://github.com/databricks/terraform-provider-databricks/pull/3529 Please...

### Configuration ```terraform data "databricks_spark_version" "latest_lts" { long_term_support = true } data "databricks_instance_pool" "workers" { name = "Pool" } data "databricks_instance_pool" "driver" { name = "Pool" } resource "databricks_cluster" "this"...

### Configuration ```hcl resource "databricks_storage_credential" "metastore" { name = "metastore_root" databricks_gcp_service_account { email = "" } provider = databricks.workspace } resource "databricks_metastore" "this" { name = "metastore_name" storage_root = "gs://somebucket/metastore"...

## Changes - Add update method for `databricks_metastore_data_access` - Roll back when default storage credential assignment failed - Add notes to documentation ## Tests - [x] `make test` run locally...

When trying to create an external location with a service principal, which is set _indirectly_ as owner of the external location through a group membership (i.e. the group is the...

Hello, it seems Terraform doesn't support adding new tables to an existing delta share, please the diff and stack trace below: ``` # databricks_share.created_share_data_sdi_db_ingest_aws_prod_ca_central_1 will be updated in-place ~ resource...

## Changes Added support for: 1. Mapping of `integer` -> `int` and `long` -> `bigint` 2. Case insensitive column types 3. Suppress diffs for column types We might need other...

We've only seen this happening in **staging regions** so far. ### Configuration ```hcl # Copy-paste your Terraform configuration here # databricks_sql_alert.table_freshness_foresight_routing_dlt_table_lineage_materialized_alert will be updated in-place ~ resource "databricks_sql_alert" "table_freshness_foresight_routing_dlt_table_lineage_materialized_alert" {...

platform bug

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

exporter