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: jupyterlab/main.tf
+13-3
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@ terraform {
9
9
}
10
10
}
11
11
12
+
data"coder_workspace""me" {}
13
+
data"coder_workspace_owner""me" {}
14
+
12
15
# Add required variables for your modules and remove any unneeded variables
13
16
variable"agent_id" {
14
17
type=string
@@ -36,6 +39,12 @@ variable "share" {
36
39
}
37
40
}
38
41
42
+
variable"subdomain" {
43
+
type=bool
44
+
description="Determines whether JupyterLab will be accessed via its own subdomain or whether it will be accessed via a path on Coder."
45
+
default=true
46
+
}
47
+
39
48
variable"order" {
40
49
type=number
41
50
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)."
0 commit comments