Skip to content

Commit 869c11f

Browse files
committed
chore: Remove extra opt and fix 'proxy' alias
1 parent b4d913e commit 869c11f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

codersdk/deployment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1352,7 +1352,7 @@ when required by your organization's security policy.`,
13521352
Description: "Whether Coder only allows connections to workspaces via the browser.",
13531353
Flag: "browser-only",
13541354
Env: "CODER_BROWSER_ONLY",
1355-
Annotations: clibase.Annotations{}.Mark(annotationEnterpriseKey, "true").Mark(annotationExternalProxies, "true"),
1355+
Annotations: clibase.Annotations{}.Mark(annotationEnterpriseKey, "true"),
13561356
Value: &c.BrowserOnly,
13571357
Group: &deploymentGroupNetworking,
13581358
YAML: "browserOnly",

enterprise/cli/workspaceproxy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func (r *RootCmd) workspaceProxy() *clibase.Cmd {
1616
cmd := &clibase.Cmd{
1717
Use: "workspace-proxy",
1818
Short: "Manage workspace proxies",
19-
Aliases: []string{"proxy"},
19+
Aliases: []string{"wsproxy"},
2020
Hidden: true,
2121
Handler: func(inv *clibase.Invocation) error {
2222
return inv.Command.HelpHandler(inv)

0 commit comments

Comments
 (0)