Martin Liahagen
Martin Liahagen
### Configuration ```hcl data "databricks_group" "users" { display_name = "users" } resource "databricks_entitlements" "users" { group_id = data.databricks_group.users.id databricks_sql_access = false } ``` ### Expected Behavior Entitlements of the `users`...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Community Note * Please vote on this issue by adding a :thumbsup: [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)...
### Configuration ```hcl terraform { backend "local" {} required_providers { databricks = { source = "databricks/databricks" version = "1.19.0" } } } provider "databricks" { host = "adb-0000000000000000.0.azuredatabricks.net" azure_workspace_resource_id =...
### Configuration ```hcl resource "databricks_catalog" "this" { name = "force_destroy_test" } resource "databricks_schema" "this" { name = "schema" catalog_name = databricks_catalog.this.name force_destroy = true } ``` You also need to...
Terraform returns an error when updating `force_destroy` or removing `comment` on the `databricks_schema` resource. Based on the debug logs, It looks like the issue occurs because the provider passes an...