terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
## Changes This PR fixes the provisioned throughput (PTP), external model (EM), and inference tables journeys via Terraform. We also remove invalid validation checks and planned invalid checks. We do...
### Configuration ```hcl terraform { required_providers { databricks = { source = "databricks/databricks" } } } provider "databricks" { profile = "default" } resource "databricks_model_serving" "this" { name = "nsenno-terraform-test"...
## Changes Added a codegen template for for generating structs similar to go-sdk. But has the following changes. - The type of each primitive type is tf types. - ForceSendFields...
## Changes Upgrade SDK plugin to use protocol version 6 as this will be used further for introducing plugin framework. We need to mux them (i.e. support both sdkv2 and...
## Changes Upgrade SDK plugin to use protocol version 6 as this will be used further for introducing plugin framework. We need to mux them (i.e. support both sdkv2 and...
### Affected Resource(s) https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/artifact_allowlist ### Expected Details The docs say: > This resource could be only used with workspace-level provider! So that would mean that you define that resource for...
## Changes ## Tests - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [...
### Configuration ```hcl data "databricks_group" "my_group" { display_name = "my_group" } resource "databricks_job" "my_job" { name = "my_job" task { task_key = "task1" existing_cluster_id = "some_id" notebook_task { notebook_path =...
This issue is related to #3378. Every terraform apply causes a change in `databricks_sql_table` given no change in configuration. This is fairly annoying given the fact that the change requires...
## Changes As Databricks supports identity columns, I have added support for identity columns in databricks_sql_table. Closes [[FEATURE] Identity column specification on databricks_sql_table](https://github.com/databricks/terraform-provider-databricks/issues/3492) ## Tests added unit test that asserts...