File tree Expand file tree Collapse file tree 3 files changed +0
-21
lines changed Expand file tree Collapse file tree 3 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,6 @@ No modules.
178
178
| [ databricks_ip_access_list.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/ip_access_list ) | resource |
179
179
| [ databricks_sql_global_config.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_global_config ) | resource |
180
180
| [ databricks_sql_endpoint.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_endpoint ) | resource |
181
- | [ databricks_metastore_assignment.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/metastore_assignment ) | resource |
182
181
| [ databricks_mount.adls] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/mount ) | resource |
183
182
| [ databricks_secret_scope.main] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/secret_scope ) | resource |
184
183
| [ databricks_secret_scope.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/secret_scope ) | resource |
Original file line number Diff line number Diff line change @@ -66,11 +66,3 @@ resource "databricks_sql_endpoint" "this" {
66
66
}
67
67
depends_on = [databricks_sql_global_config . this ]
68
68
}
69
-
70
- resource "databricks_metastore_assignment" "this" {
71
- count = alltrue ([var . assign_unity_catalog_metastore , length (var. external_metastore_id ) != 0 ]) ? 1 : 0
72
-
73
- workspace_id = var. workspace_id
74
- metastore_id = var. external_metastore_id
75
- default_catalog_name = " hive_metastore"
76
- }
Original file line number Diff line number Diff line change 1
- variable "workspace_id" {
2
- type = string
3
- description = " Id of Azure Databricks workspace"
4
- }
5
-
6
1
variable "ip_rules" {
7
2
type = map (string )
8
3
description = " Map of IP addresses permitted for access to DB"
@@ -157,13 +152,6 @@ variable "mountpoints" {
157
152
default = {}
158
153
}
159
154
160
- # Unity Catalog Metastore assignment variables
161
- variable "assign_unity_catalog_metastore" {
162
- type = bool
163
- description = " Boolean flag provides an ability to assign Unity Catalog Metastore to this Workspace"
164
- default = false
165
- }
166
-
167
155
variable "custom_cluster_policies" {
168
156
type = list (object ({
169
157
name = string
You can’t perform that action at this time.
0 commit comments