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

Have enabled the workspace for serverless SQL warehouse. All the new warehouses are created by default as serverless even when I have "enable_serverless_compute = false" ### Configuration ```hcl resource "databricks_sql_endpoint"...

bug

Verify if it's already possible to create AKV-scopes and if https://github.com/databricks/terraform-provider-databricks/blob/master/secrets/resource_secret_scope.go#L69-L72 could be removed from production code.

feature

We get the users and admins group created by default in workspace. Hence if there can be a way we can change the entitlements of the group after the import,...

feature

### Configuration ```hcl provider "databricks" { alias = "account" host = module.defaults.account_console account_id = module.defaults.databricks_account_id username = data.azurerm_key_vault_secret.username.value password = data.azurerm_key_vault_secret.password.value } ... resource "databricks_mws_workspaces" "this" { provider = databricks.account...

TODO: - [ ] Provider Resource - [ ] Update Catalog to support Provider Name and Share Name - [ ] documentation - [ ] acceptance tests Resources: 1. recipient...

Follow-up work for #1460 - expose name-to-id mapping for warehouses & clusters Example syntax could be as below ```tf data "databricks_sql_warehouses" "all_shared" { warehouse_name_contains = "shared" } output "warehouses_mapping" {...

feature
good first issue
hacktoberfest

- [ ] create doc updates/guide updates - [ ] run acceptance tests for aws - [ ] test creating mws for aws with 1.0.2 and then upgrade and see...

feature
needs-api

Hi, I would like to request a feature for databricks_pipeline resource. To add the ability to use the new UI feature to 'schedule' on a recurring basis. This is new...

feature

### Configuration ```hcl resource "databricks_mlflow_model" "model" { name = "model" description = "MLflow registered model" } ``` Run command: `terraform import databricks_mlflow_model.model "model"` ### Expected Behavior Model imports successfully with...

feature
hacktoberfest

### Affected Resource(s) [Instance Pool - Zone ID](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/instance_pool#zone_id) ### Expected Details The Zone ID is listed as a (Required) field, but in the description it states "This is an optional...

docs
good first issue