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
trafficstars

### Affected Resource(s) `mws_credentials` https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/mws_credentials ### List of things to potentially add/remove: This is a list of things to manipulate in the docs: - [ ] `account_id` is deprecated and...

docs

When a new column is added to the column configuration in the `end`, the databricks_sql_table resource recreates a table instead of altering the table and adding the new column. The...

feature

Issue with `databricks_sql_table` resource. The "warehouse_id" seems to be ignored, and Terraform is always creating a special cluster "terraform-sql-table" for CRUD operations. ### Configuration ```hcl resource "databricks_sql_table" "this" { provider...

### Configuration ```hcl data "databricks_metastore" "int_meta" { provider = databricks.account metastore_id = "xxxxxxxxxxxxxxxxxxxxxxxxx" } data "databricks_group" "admins" { provider = databricks.account display_name = "METASTORE_ADMINS" } terraform provider config provider "databricks"...

## Changes Default permissions API for SQL Alerts/Dashboards/Queries doesn't have `IS_OWNER` permission. Instead, there is a separate [REST API](https://docs.databricks.com/api/workspace/dbsqlpermissions/transferownership) to change ownership of the objects. This PR implements the following...

do-not-merge

### Configuration ```hcl resource "databricks_sql_global_config" "this" { security_policy = "DATA_ACCESS_CONTROL" instance_profile_arn = var.sql_endpoint_instance_profile_arn data_access_config = { "spark.databricks.hive.metastore.glueCatalog.enabled" : "true" "spark.sql.session.timeZone" : "UTC" } provider = databricks.workspace } ``` ### Expected...

### Use-cases SQL Warehouses have a Unity Catalog toggle button in advanced options that enables or disables UC for that endpoint. This toggle switch does not appear to be possible...

feature
needs-api

### Configuration ```hcl provider "databricks" { alias = "accounts" host = "https://accounts.azuredatabricks.net" account_id = "XXXXX" # Account ID of the Databricks Admin Account for SIX azure_client_id = var.app_id azure_client_secret =...

We need to validate that `databricks_service_principal_secret` works on Azure, and document Databricks-based OAuth for Azure/GCP Also, need to document the following: * Service principal created directly in Azure Databricks can...

feature

https://learn.microsoft.com/en-us/azure/databricks/release-notes/product/2024/january#support-for-databricks-managed-service-principals - we may need to remove the check that `application_id` is required on Azure...

feature