You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description="Unity Catalog Metastore Id that is located in separate environment. Provide this value to associate Databricks Workspace with target Metastore"
@@ -19,22 +14,40 @@ variable "metastore_grants" {
19
14
principal =string
20
15
privileges =list(string)
21
16
}))
22
-
description="Permissions to give on metastore to group"
17
+
description="Permissions to give on metastore to user, group or service principal"
23
18
default=[]
24
19
}
25
20
26
21
variable"catalog" {
27
22
type=map(object({
28
-
catalog_grants =optional(map(list(string)))
29
-
catalog_owner =optional(string)
30
-
catalog_comment =optional(string)
31
-
catalog_properties =optional(map(string))
32
-
schema_name =optional(list(string))
33
-
schema_grants =optional(map(list(string)))
34
-
schema_owner =optional(string)
35
-
schema_comment =optional(string)
36
-
schema_properties =optional(map(string))
23
+
catalog_grants =optional(map(list(string)))
24
+
catalog_owner =optional(string) # Username/groupname/sp application_id of the catalog owner.
25
+
catalog_storage_root =optional(string) # Location in cloud storage where data for managed tables will be stored
26
+
catalog_isolation_mode =optional(string, "OPEN") # Whether the catalog is accessible from all workspaces or a specific set of workspaces. Can be ISOLATED or OPEN.
27
+
catalog_comment =optional(string) # User-supplied free-form text
0 commit comments