terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
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"...
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.
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,...
### 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" {...
- [ ] create doc updates/guide updates - [ ] run acceptance tests for aws - [ ] test creating mws for aws with 1.0.2 and then upgrade and see...
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...
### 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...
### 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...