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
Copy file name to clipboardExpand all lines: variables.tf
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,9 @@ variable "workspace_admins" {
45
45
46
46
variable"iam" {
47
47
type=map(object({
48
-
user =optional(list(string))
49
-
service_principal =optional(list(string))
50
-
entitlements =optional(list(string))
48
+
user =optional(list(string))
49
+
service_principal =optional(list(string))
50
+
entitlements =optional(list(string))
51
51
}))
52
52
description="Used to create workspace group. Map of group name and its parameters, such as users and service principals added to the group. Also possible to configure group entitlements."
53
53
default={}
@@ -246,3 +246,9 @@ variable "clusters" {
246
246
description="Set of objects with parameters to configure Databricks clusters and assign permissions to it for certain custom groups"
247
247
default=[]
248
248
}
249
+
250
+
variable"pat_token_lifetime_seconds" {
251
+
type=number
252
+
description="The lifetime of the token, in seconds. If no lifetime is specified, the token remains valid indefinitely"
0 commit comments