File tree 1 file changed +13
-13
lines changed
docs/admin/templates/extending-templates
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -374,20 +374,20 @@ data "coder_parameter" "jetbrains_ide" {
374
374
## Create Autofill
375
375
376
376
When the template doesn' t specify default values, Coder may still autofill
377
- parameters.
377
+ parameters in one of two ways:
378
378
379
- You need to enable ` auto-fill- parameters` first:
379
+ - Coder will look for URL query parameters with form ` param. < name > = < value > ` .
380
380
381
- ` ` ` shell
382
- coder server --experiments=auto-fill-parameters
383
- ` ` `
381
+ This feature enables platform teams to create pre-filled template creation links.
382
+
383
+ - Coder can populate recently used parameter key-value pairs for the user.
384
+ This feature helps reduce repetition when filling common parameters such as
385
+ ` dotfiles_url` or ` region` .
386
+
387
+ To enable this feature, you need to set the ` auto-fill-parameters` experiment flag:
384
388
385
- Or set the [environment variable](../../setup/index.md), ` CODER_EXPERIMENTS=auto-fill-parameters`
386
- With the feature enabled:
389
+ ` ` ` shell
390
+ coder server --experiments=auto-fill-parameters
391
+ ` ` `
387
392
388
- 1. Coder will look for URL query parameters with form ` param.< name> =< value> ` .
389
- This feature enables platform teams to create pre-filled template creation
390
- links.
391
- 2. Coder will populate recently used parameter key-value pairs for the user.
392
- This feature helps reduce repetition when filling common parameters such as
393
- ` dotfiles_url` or ` region` .
393
+ Or set the [environment variable](../../setup/index.md), ` CODER_EXPERIMENTS=auto-fill-parameters`
You can’t perform that action at this time.
0 commit comments