terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
Some changes completely unrelated to workspace permissions of service principals will trigger the replacement of [`databricks_mws_permission_assignment`](https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/mws_permission_assignment) resources if they depend on a [`databricks_service_principal`](https://registry.terraform.io/providers/databricks/databricks/latest/docs/data-sources/service_principal) data source and the data source is...
**Configuration** Terraform { required_providers { databricks = { source = "databricks/databricks" version = "1.38.0" } } } **Expected Behavior** If Storage Credentials and External Locations part of UC Databricks are...
Hi, Right now there is a terraform resource "**databricks_workspace_file**" which allow user to insert workspace file in a Databricks Workspace. Unfortunatelly there is no data source for "**databricks_workspace_file_paths**" which would...
### Configuration ```hcl resource "databricks_sql_table" "tbl_test" { warehouse_id = var.sql_warehouse_id name = "tbl_test" catalog_name = "${var.databricks_catalog_prefix}main" schema_name = "_raw" table_type = "MANAGED" data_source_format = "DELTA" column { name = "Test.Name"...
### Configuration - I have a configuration for couple of external catalogs with specific Databricks workspace bindings - I had to change one of the catalogs to point to a...
### Configuration ```hcl # Copy-paste your Terraform configuration here ``` data "databricks_group" "ds" { provider = databricks.accounts display_name = "Data Science" } data "databricks_service_principal" "spn" { provider = databricks.accounts display_name...
https://learn.microsoft.com/en-us/azure/databricks/release-notes/product/2024/march#the-jobs-ui-is-updated-to-better-manage-jobs-deployed-by-databricks-asset-bundles
### Use-cases The databricks provider currently offers resources such as `databricks_grants` and `databricks_permissions` (and probably several others that work in the same manner, but those are the two I am...
The resource **databricks_workspace_conf** accepts a parameter **custom_config** which is list of key-value-pairs. The documentation (v. 1.38.0) does not list all of the available keys that can be set which makes...
### Configuration ```hcl Terraform Code attached ``` ### Expected Behavior Expecting terraform init to work and download the provider ### Actual Behavior I am getting the following error while trying...