File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed
examples/resources/coder_agent Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,12 @@ resource "coder_agent" "dev" {
20
20
os = "linux"
21
21
arch = "amd64"
22
22
dir = "/workspace"
23
+ display_apps {
24
+ vscode = true
25
+ vscode_insiders = false
26
+ web_terminal = true
27
+ ssh_helper = false
28
+ }
23
29
}
24
30
25
31
resource "kubernetes_pod" "dev" {
@@ -72,8 +78,8 @@ resource "kubernetes_pod" "dev" {
72
78
73
79
Optional:
74
80
75
- - ` port_forwarding_helper ` (Boolean) Display port-forwarding helper button in the agent bar.
76
- - ` ssh_helper ` (Boolean) Display port-forwarding helper button in the agent bar.
81
+ - ` port_forwarding_helper ` (Boolean) Display the port-forwarding helper button in the agent bar.
82
+ - ` ssh_helper ` (Boolean) Display the SSH helper button in the agent bar.
77
83
- ` vscode ` (Boolean) Display the VSCode Desktop app in the agent bar.
78
84
- ` vscode_insiders ` (Boolean) Display the VSCode Insiders app in the agent bar.
79
85
- ` web_terminal ` (Boolean) Display the web terminal app in the agent bar.
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ resource "coder_agent" "dev" {
6
6
arch = " amd64"
7
7
dir = " /workspace"
8
8
display_apps {
9
- vscode = true
10
- vscode_insiders = false
11
- web_terminal = true
12
- ssh_helper = false
9
+ vscode = true
10
+ vscode_insiders = false
11
+ web_terminal = true
12
+ ssh_helper = false
13
13
}
14
14
}
15
15
You can’t perform that action at this time.
0 commit comments