Skip to content

Commit faee979

Browse files
committed
rm prebuilt
1 parent 45d9caf commit faee979

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

docs/admin/templates/extending-templates/parameters.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,6 @@ Workspace presets allow you to select settings tailored to your most common deve
320320
Coder admins can configure workspace presets with combinations of parameter values and workspace settings within each template's Terraform file, and workspace users can customize their configurations as they need to.
321321
322322
Use `coder_workspace_preset` to define the preset parameters.
323-
You can use prebuilt workspaces to ensure that workspaces can be deployed within one minute.
324-
Use `prebuilds` to define how many instances of the template should be stored as a prebuilt workspace.
325-
When a developer selects the associated template, the workspace will be assigned to that developer and the server will build a new prebuilt workspace.
326323
327324
<details><summary>Expand for an example</summary>
328325
@@ -331,12 +328,9 @@ data "coder_workspace_preset" "goland-gpu" {
331328
name = "GoLand with GPU"
332329
parameters = {
333330
"machine_type" = "n1-standard-1"
334-
"attach_gpu" = "true"
335-
"gcp_region" = "europe-west4-c"
336-
"jetbrains_ide" = "GO"
337-
}
338-
prebuilds {
339-
instances = 1
331+
"attach_gpu" = "true"
332+
"gcp_region" = "europe-west4-c"
333+
"jetbrains_ide" = "GO"
340334
}
341335
}
342336

0 commit comments

Comments
 (0)