terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
### Use-cases For a client, I am evaluating Databricks and its surrounding tools, and the Databricks Terraform provider is raising concerns. The provider authentication method used for Azure is currently...
### Configuration We are trying to spin up a cluster using Graviton instances using Photon (instance type `m6gd.*`). As per the [Databricks documentation](https://docs.databricks.com/clusters/graviton.html) we should configure the cluster using something...
- [x] docs - [x] resource - [x] tests - [x] supports open 2 db - [x] supports db 2 db (DB2DB is automatic we cant use this resource as...
TODO: test
### Configuration ```hcl terraform { required_version = ">=v0.14.7" } databricks = { source = "databricks/databricks" version = "1.2.0" } ``` ### Expected Behavior ```hcl resource "databricks_metastore" "workspace_metastore" { name =...
## Changes Adds `databricks_volume` data source. The data source takes the volume's `full_name` or `catalog_name`, `schema_name`, `name` as user input. ~~I tried to use the schema customization from `common.customizable_schema.go` when...
## Changes - Add `CustomDiffFunc` so that we ignore the diff if `health` is the only field with the diff Fixes #3204 ## Tests - [x] `make test` run locally...
### Configuration Any databricks_sql_endpoint resource updates the plan every single time a plan/apply is called to update the 'health'. This started happening sometime after 1.31.0 but not sure which specific...
## Changes Add `databricks_file` resource ## Tests - [X] `make test` run locally - [X] relevant change in `docs/` folder - [X] covered with integration tests in `internal/acceptance` - [...
## Changes Initial support for exporting of the following resources: * `databricks_catalog` * `databricks_schema` * `databricks_volume` * `databricks_connection` * `databricks_grants` * `databricks_share` * `databricks_recipient` * `databricks_registered_model` * `databricks_metastore` * `databricks_metastore_assignment`...