terraform-provider-databricks icon indicating copy to clipboard operation
terraform-provider-databricks copied to clipboard

Databricks Terraform Provider

Results 561 terraform-provider-databricks issues
Sort by recently updated
recently updated
newest added

Make the code aligned with the documentation: https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/workspace_conf#argument-reference PR for Issue: #1802 (remove a workspace with a non-enable/enforce setting)

### Configuration ```hcl resource "databricks_secret_scope" "vault_backed_sc" { name = "test-secret" provider = databricks.workspace keyvault_metadata { resource_id = azurerm_key_vault.main.id dns_name = azurerm_key_vault.main.vault_uri } } ``` ### Expected Behavior "databricks_secret_scope" should only...

I have a list of Unity Catalogs (one for each region) whose catalog/schemas/grants need to be created with Terraform. Since those resources need to go to the Workspace-API providers, I...

needs-api

Even though workspace admins cannot create or manage account groups, they can retrieve details about account-level groups, users & service principals via the Account SCIM API by calling `{workspace-domain}/api/2.0/account/scim/v2/` This...

feature

We created a Service Principal with an associated control_rule_set for the servicePrincipal/user and servicePrincipal/manager. If we issue a `terraform destroy` with the expected state intact, the provider destroys the resources....

### Use-cases We want to reference metadata from our Unity catalog tables in other Terraform configs - for example, we'd like to read the S3 paths where managed tables are...

feature

### Configuration ```hcl terraform { required_providers { azurerm = { source = "hashicorp/azurerm" } databricks = { source = "databricks/databricks" } } } provider "databricks" { alias = "workspace" host...

Go SDK

From Azure Devops using Azure federated identity to connect Azure Databricks Like implementing Federation Identity with Azure Databricks using the Teraform. https://techcommunity.microsoft.com/t5/azure-devops-blog/introduction-to-azure-devops-workload-identity-federation-oidc/ba-p/3908687 https://devblogs.microsoft.com/devops/public-preview-of-workload-identity-federation-for-azure-pipelines/#built-in-pipeline-tasks

feature

### Configuration ```hcl resource "databricks_token" "pat" { comment = var.databricks_pat_comment // 120 day token lifetime_seconds = 120 * 24 * 60 * 60 depends_on = [module.adb] } resource "azurerm_key_vault_secret" "databricks_token"...