terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
We need to investigate how [this](https://learn.microsoft.com/en-us/azure/databricks/release-notes/product/2024/january#workspace-path-update) will affect the exporter: > Historically, users were required to include the `/Workspace` path prefix for some Databricks APIs (`%sh`) but not for others...
It would be nice to add support for Vector Search Endpoint and Indexes. Work in progress already...
### Configuration ``` terraform { required_version = ">= 1.1.9" required_providers { aws = { source = "hashicorp/aws" version = ">= 4.65.0" } databricks = { source = "databricks/databricks" version =...
Right now, exporter generates paths like this: ```hcl resource "databricks_notebook" "some_notebok" { source = "${path.module}/notebooks/dir1/dir2/notebook.py" path = "${databricks_user.user.home}/dir1/dir2/notebook" } ``` Even if we emit a dedicated object for the `databricks_directory`...
[ISSUE] databricks_storage_credential: No API found for PUT even with latest provider version 1.34
I have exactly the same issue as decribed here, so I don't repeat all details: https://github.com/databricks/terraform-provider-databricks/issues/2697 But I still have this problem with the latest provider version 1.34 ### Configuration...
### Affected Resource(s) databricks_schema databricks_grants ### Expected Details The error messages for these 2 resources when attempting to use them with an account-level provider are inconsistent. In particular the error...
## Changes API responses return names in small cases, because of this the names which are used as `id` as stored in small case in the state. This leads to...
## Changes Allows for retrieval of service principals as data sources by SCIM ID. Slight changes to allow for the use of `ExactlyOneOf` in schema definition, which helps with config...
## Changes ## Tests - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [...
## Changes databricks workspace notebook resource modified to allow inclusion of extension in module call. **Previous behaviour:** Following resource config would create `notebook.py.py` on the workspace, but databricks UI masks...