terraform-provider-databricks
terraform-provider-databricks copied to clipboard
Databricks Terraform Provider
With the latest releases, it's now possible to change `catalog` and `schema` for existing pipelines, so we need to remove `force_new` from these fields But we need to investigate how...
The legacy SQL Dashboard API is deprecated, and it doesn't allow the creation of new dashboards anymore. So we don't need to support generation of the legacy code anymore
## Changes - added skelleton for methods needed for new resource struct to satisfy - added confuration method for both workspace and account clients (need assistance in how to grab...
### Use-cases In the existing scenario, we need to add the schemas to the shares at the same time that the shares are created. This leads to a centralized share...
### Use-cases We write token values (regular tokens and OBO) out to external tools (ex. OnePassword [items](https://registry.terraform.io/providers/1Password/onepassword/latest/docs/resources/item)). With Databricks now enforcing token expiry, we need to ensure end users are...
### Configuration ```hcl resource "databricks_catalog" "customer" { name = "catalog_name_new" comment = "The renamed catalog" isolation_mode = "ISOLATED" owner = data.databricks_service_principal.spn.application_id storage_root = databricks_external_location.workspace.url } # Example Databricks group to...
### Use-cases * Use Service Principal OAuth federation with Github Actions OIDC for AWS Based Deployments * avoid using long term credentials. ### Attempted Solutions Getting OAuth Token via JWT...
### Use-cases In order to create views or other tables with databricks_sql_table on selecting a warehouse, the query executed does not wait for the cluster to start and timeouts after...
We need to avoid the generation of resources for system objects `system` catalog, etc. But we need to export grants for them. For system tables, grants should have dependencies on...
## Changes This PR attempts to fix the issue #3448. It - Replaces all usage of `databricks_repo` to `databricks_git_folder` - Renames `docs/resources/repo.md` to `docs/resources/git_folder.md` and update all the references in...