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: registry/anomaly/modules/tmux/main.tf
+41-2Lines changed: 41 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,14 +26,53 @@ variable "save_interval" {
26
26
default=1
27
27
}
28
28
29
+
variable"order" {
30
+
type=number
31
+
description="The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)."
32
+
default=null
33
+
}
34
+
35
+
variable"group" {
36
+
type=string
37
+
description="The name of a group that this app belongs to."
38
+
default=null
39
+
}
40
+
41
+
variable"icon" {
42
+
type=string
43
+
description="The icon to use for the app."
44
+
default="/icon/tmux.svg"
45
+
}
46
+
47
+
variable"sessions" {
48
+
type=list(string)
49
+
description="List of tmux sessions to create or start."
0 commit comments