We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde43f3 commit 4fb6dbcCopy full SHA for 4fb6dbc
main.tf
@@ -56,14 +56,6 @@ resource "databricks_metastore_data_access" "this" {
56
is_default = true
57
}
58
59
-resource "databricks_metastore_assignment" "this" {
60
- count = anytrue([var.create_metastore, length(var.external_metastore_id) != 0]) ? 1 : 0
61
-
62
- workspace_id = var.workspace_id
63
- metastore_id = length(var.external_metastore_id) == 0 ? databricks_metastore.this[0].id : var.external_metastore_id
64
- default_catalog_name = "hive_metastore"
65
-}
66
67
# Catalog
68
resource "databricks_catalog" "this" {
69
for_each = anytrue([var.create_metastore, length(var.external_metastore_id) != 0]) ? var.catalog : {}
0 commit comments