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.
178178| [ databricks_ip_access_list.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/ip_access_list ) | resource |
179179| [ databricks_sql_global_config.this] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/sql_global_config ) | resource |
180180| [ 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 |
182181| [ databricks_mount.adls] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/mount ) | resource |
183182| [ databricks_secret_scope.main] ( https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/secret_scope ) | resource |
184183| [ 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" {
6666 }
6767 depends_on = [databricks_sql_global_config . this ]
6868}
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-
61variable "ip_rules" {
72 type = map (string )
83 description = " Map of IP addresses permitted for access to DB"
@@ -157,13 +152,6 @@ variable "mountpoints" {
157152 default = {}
158153}
159154
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-
167155variable "custom_cluster_policies" {
168156 type = list (object ({
169157 name = string
You can’t perform that action at this time.
0 commit comments