terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
## Changes Add `databricks_mws_network_connectivity_config` data source Resolves #3614 ## Tests - [x] `make test` run locally - [x] relevant change in `docs/` folder - [x] covered with integration tests in...
workload_type configuration in databricks_cluster resource is not taking effect, we can see a blank in the cluster JSON . however when we use the true statement instead of false it...
### Configuration ```hcl // copied from https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/aws_unity_catalog_policy data "databricks_aws_unity_catalog_policy" "this" { aws_account_id = var.aws_account_id bucket_name = "databricks-bucket" role_name = "${var.prefix}-uc-access" kms_name = "databricks-kms" } data "databricks_aws_unity_catalog_assume_role_policy" "this" { aws_account_id =...
- Fixes Issue #3596, issue with case sensitive group names in databricks_group resource - Updated ReadByDisplayName function to ensure exact case-sensitive matching of group display names. - This addresses the...
## Changes - Refactored `databricks_zones` to Go SDK - Refactored `databricks_spark_versions` to Go SDK. This refactoring require one additional change to `resource.go`: - Add new method `WorkspaceDataWithCustomizeFunc` to allow customization...
### Configuration ```hcl resource "databricks_pipeline" "pipeline" { provider = databricks.workspace depends_on = [databricks_notebook.notebook_source] name = var.pipeline_name development = false channel = "PREVIEW" edition = "ADVANCED" catalog = var.catalog_name target =...
## Changes - Refactored `databricks_cluster(s)` data sources to Go SDK ## Tests - [x] `make test` run locally - [x] covered with integration tests in `internal/acceptance` - [x] relevant acceptance...
### Configuration ```hcl terraform { required_providers { databricks = { source = "databricks/databricks" version = "1.37.0" } } } provider "databricks" {} data "databricks_current_user" "me" {} resource "databricks_file" "example" {...
### Configuration ```hcl resource "databricks_cluster" "this" { provider = databricks.workspace cluster_name = var.cluster_name # ... } resource "databricks_permissions" "this" { provider = databricks.workspace cluster_id = databricks_cluster.this.cluster_id # ... } resource...
## Changes In a special case when one would want to add rights for extra users to either view or edit things in one's home directory - the user's own...