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
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,17 @@ variable "workspace_admins" {
43
43
}
44
44
}
45
45
46
+
variable"account_groups" {
47
+
type=list(object({
48
+
name =string
49
+
entitlements =optional(list(string))
50
+
cluster_name =optional(string)
51
+
permission =optional(string)
52
+
}))
53
+
description="List of objects with group name and entitlements for this group, cluster name to which should be added group and permissions for this group in cluster"
0 commit comments