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

When we remove `webhook_notifications` block from an existing databricks job, we see `Error: cannot update job: Webhook with id '' was not found.` ### Expected Behavior The webhook should get...

## Changes This pull request changes the (optional) to (required) in the index.md main doc https://registry.terraform.io/providers/databricks/databricks/latest/docs This is for fixing below doc issue #3143

### Configuration ```hcl provider "databricks" { host = var.global_databricks_workspace_url } resource "databricks_storage_credential" "this" { name = "a${var.asms_number}-${module.tagging.environment_label}-musea2-${var.scope}-sc-dbxac" owner = var.platform_ad_group_name azure_managed_identity { access_connector_id = azurerm_databricks_access_connector.this.id managed_identity_id = azurerm_user_assigned_identity.databricks.id } comment...

platform bug

## Changes `databricks_grants` resource marks all fields in secure_mapping as force_new and when these ids change (caused by change in name of other UC resources for example: `name` in `databricks_external_location`,...

We had to redeploy external locations to do some change on the underlying buckets and now when deploying external locations, storage credentials and everything else related something strange happens. The...

platform bug

## Changes Partially addresses #2610, #3018. This change will add an optional `workspace_id` field to all workspace-level resources. When using an account-level provider, if the workspace_id is specified, a workspace...

do-not-merge

### Use-cases There is a [public preview](https://learn.microsoft.com/en-us/azure/databricks/security/network/serverless-network-security/serverless-private-link) for private connectivity to serverless compute using private link. This is a feature request to add 1 (or more) resource(s) for Network Connectivity...

feature

## Changes Add `databricks_mlflow_experiment` data source ## Tests Created 3 tests for this data source - [x] `make test` run locally - [x] relevant change in `docs/` folder - [x]...

### Configuration ```hcl data "databricks_group" "mygroup" { display_name = "mygroup" } resource "databricks_storage_credential" "my_storage_credential" { name = "my-storage-credential" aws_iam_role { role_arn = "

### Configuration Terraform { required_providers { databricks = { source = "databricks/databricks" version = "1.34.0" } } } ### Expected Behavior Secrets should get imported and exported with any issues...

exporter