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

![Image](https://github.com/user-attachments/assets/e94604e4-1000-4158-b916-6064f4203fdf) There is no guide for AWS ### Affected Resource(s) Missing Guide ### Expected Details I would expect to see similar quality documentation for using AWS OIDC as the other...

docs

### Configuration ``` resource "databricks_job" "test_jobs" { name = "test-job" job_cluster { job_cluster_key = "test-job-cluster" new_cluster { data_security_mode = "USER_ISOLATION" spark_version = var.spark_version policy_id = var.default_cluster_policy driver_node_type_id = "rd-fleet.2xlarge" node_type_id...

### Affected Resource(s) databricks_connection ### Expected Details I'm running into a confusing, undocumented difference when trying to create a databricks_connection resource in Terraform — specifically for setting up an Azure...

docs

### Use-cases Writing databricks cluster policies is very semi-structured and loosely typed. This makes it difficult to write effective cluster policies on the first try, and users end up writing,...

feature

### Configuration ```hcl resource "databricks_permissions" "per_user_cluster_usage" { for_each = toset(local.user_specific_clusters) cluster_id = databricks_cluster.per_user[each.key].id access_control { user_name = each.key permission_level = "CAN_RESTART" } } ``` ### Expected Behavior tf plan should...

Hello, I have a problem with 'databricks_mws_ncc_private_endpoint_rule' module due to timeout, is there any way to pass timeout condition along with the module ? ### Configuration ```hcl resource "databricks_mws_ncc_private_endpoint_rule" "pe_rule"...

### Configuration ```hcl resource "databricks_grant" "this" { schema = "some_schema" principal = "some_principal" privileges = ["USE_SCHEMA"] } ``` ### Expected Behavior For the schema grant to be created and the...

### Configuration ```hcl resource "databricks_sql_table" "internal_orderbook_snapshots" { name = "my_test_table" catalog_name = "dev" schema_name = "silver" table_type = "MANAGED" data_source_format = "DELTA" column { name = "bids_map" type = "map"...

### Use-cases Importing existing Entra ID users and groups in databricks provider so you can give users/groups access to databricks resources with e.g. `databricks_group_member` or using `databricks_mws_permission_assignment`. ### Attempted Solutions...

feature
needs-api

Hi, Databricks released a new API for budget policy as of today when we create a policy its available to all workspaces across the account with this new feature we...

feature