terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
### Affected Resource(s) https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/job#argument-reference. ### Expected Details According to official Databricks API: https://docs.databricks.com/api/workspace/jobs/create, there's no `max_retries` and `retry_on_timeout` setting at job level, only at task-level. Based on local experiments, applying...
According to this [release ](https://learn.microsoft.com/en-us/azure/databricks/release-notes/product/2023/september#delegate-the-ability-to-create-a-storage-credential-in-unity-catalog)it should be now possible to delegate creation of storage credential using this privilege If principal does not have this privilege we get expected error: User...
## Changes ## Tests - [ ] `make test` run locally - [x] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ]...
As of provider version 1.35.0 I get a deprecated warning that account_id should not be specified in databricks_mws_private_access_settings resource and to set it in the provider block instead. But, if...
Right now, dependencies are resolved individually, one by one. We may need to allow to resolve specific references only when some subcondition matches. For example: * resolve `databricks_recipient` in `databricks_grants`...
### Configuration ```hcl data "databricks_group" "users" { display_name = "users" } resource "databricks_entitlements" "entitlements_users" { group_id = data.databricks_group.users.id databricks_sql_access = false workspace_access = true } ``` ### Expected Behavior Entitlements...
### Configuration ```hcl data "databricks_group" "users" { display_name = "users" } resource "databricks_entitlements" "users" { group_id = data.databricks_group.users.id databricks_sql_access = false } ``` ### Expected Behavior Entitlements of the `users`...
### Affected Resource(s) The following doc show this "(optional) Account Id that could be found in the top right corner of [Accounts Console](https://accounts.cloud.databricks.com/). Alternatively, you can provide this value as...
## Changes We need to make a number of changes in `databricks_model_serving` to make it matching to latest API spec: - [x] Document new configuration options: `rate_limits`, `tags`, `config.auto_capture_config` -...
Hi team, I'm using databricks_grants to apply permissions to some unity catalog elements, specifically databricks_storage_credential and databricks_external_location. I'm working within a workspace, granting access to groups and service principals that...