Skip to content

Commit 2486658

Browse files
committed
make gen
1 parent 018a016 commit 2486658

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

docs/resources/agent.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ resource "coder_agent" "dev" {
2020
os = "linux"
2121
arch = "amd64"
2222
dir = "/workspace"
23+
display_apps {
24+
vscode = true
25+
vscode_insiders = false
26+
web_terminal = true
27+
ssh_helper = false
28+
}
2329
}
2430
2531
resource "kubernetes_pod" "dev" {
@@ -72,8 +78,8 @@ resource "kubernetes_pod" "dev" {
7278

7379
Optional:
7480

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.
7783
- `vscode` (Boolean) Display the VSCode Desktop app in the agent bar.
7884
- `vscode_insiders` (Boolean) Display the VSCode Insiders app in the agent bar.
7985
- `web_terminal` (Boolean) Display the web terminal app in the agent bar.

examples/resources/coder_agent/resource.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ resource "coder_agent" "dev" {
66
arch = "amd64"
77
dir = "/workspace"
88
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
1313
}
1414
}
1515

0 commit comments

Comments
 (0)