File tree 3 files changed +4
-3
lines changed 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ PromptParamLoop:
272
272
273
273
err = cliui .WorkspaceResources (cmd .OutOrStdout (), resources , cliui.WorkspaceResourcesOptions {
274
274
WorkspaceName : args .NewWorkspaceName ,
275
- // Since agent's haven't connected yet, hiding this makes more sense.
275
+ // Since agents haven't connected yet, hiding this makes more sense.
276
276
HideAgentState : true ,
277
277
Title : "Workspace Preview" ,
278
278
})
Original file line number Diff line number Diff line change @@ -4,10 +4,9 @@ import (
4
4
"fmt"
5
5
"time"
6
6
7
- "github.com/coder/coder/cli/cliflag"
8
-
9
7
"github.com/spf13/cobra"
10
8
9
+ "github.com/coder/coder/cli/cliflag"
11
10
"github.com/coder/coder/codersdk"
12
11
)
13
12
Original file line number Diff line number Diff line change @@ -38,6 +38,8 @@ type CreateWorkspaceBuildRequest struct {
38
38
DryRun bool `json:"dry_run,omitempty"`
39
39
ProvisionerState []byte `json:"state,omitempty"`
40
40
// ParameterValues are optional. It will write params to the 'workspace' scope.
41
+ // This will overwrite any existing parameters with the same name.
42
+ // This will not delete old params not included in this list.
41
43
ParameterValues []CreateParameterRequest `json:"parameter_values,omitempty"`
42
44
}
43
45
You can’t perform that action at this time.
0 commit comments