terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
### Use-cases Be able to have SQL Warehouses / Tokens IP Whitelisting - for the moment, we can only do that on a Workspace level.
### Configuration ```hcl resource "databricks_connection" "salesforce-cloud" { name = "salesforce" connection_type = "SALESFORCE" comment = "Salesforce cloud connection" options = { is_sandbox = "false" client_id = "some-client-id" client_secret = "some-client-secret"...
## Changes Continuing #4028 Added `databricks_users` data source as requested in #3468 to retrieve multiple users from both the account and workspace-level APIs with optional filtering by `display_name_contains` or `user_name_contains`,...
## Changes The current implementation of `databricks_entitlements` crashes if an unexpected entitlement is returned from the API. This makes it impossible for new entitlements to be introduced and available by...
### Use-cases We enjoy for all other objects we maintain in our Terraform setup for databricks not having any credentials/passwords maintained within it. E.g. We creeate secret scopes w/permissions, but...
### Expected Behavior To change the tag in the current databricks budget. ### Actual Behavior Changing a tag causes the budget ID to change as well and as a result...
## Changes Introduces `databricks_function` resource—allowing users to create and manage UDFs within Terraform. _work in progress..._ Closes #4074 ## Tests - [x] `make test` run locally - [x] relevant change...
### Configuration We are trying to add the same table to an existing share with a different alias (`shared_as`): ```hcl Terraform will perform the following actions: # databricks_share.share_to_system_tables will be...
The AlertV2 resource uses an API endpoint "/api/2.0/alerts" that is referenced nowhere in the code on the `main` branch of this repo. See https://docs.databricks.com/api/workspace/alertsv2/createalert
### Configuration ```hcl # We are using Databricks Asset bundle to deploy the jobs ``` ### Expected Behavior Deployment should be completed ### Actual Behavior 2025-04-24 15:47:49 + databricks bundle...