Skip to content

Commit db806ae

Browse files
authored
docs: move early access badge in dynamic parameters doc (coder#18009)
and md fix this is basically a `hotfix` Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com>
1 parent 8f44603 commit db806ae

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -392,13 +392,13 @@ parameters in one of two ways:
392392
393393
Or set the [environment variable](../../setup/index.md), `CODER_EXPERIMENTS=auto-fill-parameters`
394394
395-
## Dynamic Parameters
395+
## Dynamic Parameters (Early Access)
396396
397397
Dynamic Parameters enhances Coder's existing parameter system with real-time validation,
398398
conditional parameter behavior, and richer input types.
399399
This feature allows template authors to create more interactive and responsive workspace creation experiences.
400400
401-
### Enable Dynamic Parameters (Early Access)
401+
### Enable Dynamic Parameters
402402
403403
To use Dynamic Parameters, enable the experiment flag or set the environment variable.
404404
@@ -488,7 +488,7 @@ The "Options" column in the table below indicates whether the form type requires
488488
489489
### Form Type Examples
490490
491-
<details><summary>`checkbox`: A single checkbox for boolean values</summary>
491+
<details><summary>checkbox: A single checkbox for boolean values</summary>
492492
493493
```tf
494494
data "coder_parameter" "enable_gpu" {
@@ -502,7 +502,7 @@ data "coder_parameter" "enable_gpu" {
502502
503503
</details>
504504
505-
<details><summary>`dropdown`: A searchable select menu for choosing a single option from a list</summary>
505+
<details><summary>dropdown: A searchable select menu for choosing a single option from a list</summary>
506506
507507
```tf
508508
data "coder_parameter" "region" {
@@ -525,7 +525,7 @@ data "coder_parameter" "region" {
525525
526526
</details>
527527
528-
<details><summary>`input`: A standard text input field</summary>
528+
<details><summary>input: A standard text input field</summary>
529529
530530
```tf
531531
data "coder_parameter" "custom_domain" {
@@ -539,7 +539,7 @@ data "coder_parameter" "custom_domain" {
539539
540540
</details>
541541
542-
<details><summary>`key-value`: Input for entering key-value pairs</summary>
542+
<details><summary>key-value: Input for entering key-value pairs</summary>
543543
544544
```tf
545545
data "coder_parameter" "environment_vars" {
@@ -553,7 +553,7 @@ data "coder_parameter" "environment_vars" {
553553
554554
</details>
555555
556-
<details><summary>`multi-select`: Checkboxes for selecting multiple options from a list</summary>
556+
<details><summary>multi-select: Checkboxes for selecting multiple options from a list</summary>
557557
558558
```tf
559559
data "coder_parameter" "tools" {
@@ -580,7 +580,7 @@ data "coder_parameter" "tools" {
580580
581581
</details>
582582
583-
<details><summary>`password`: A text input that masks sensitive information</summary>
583+
<details><summary>password: A text input that masks sensitive information</summary>
584584
585585
```tf
586586
data "coder_parameter" "api_key" {
@@ -594,7 +594,7 @@ data "coder_parameter" "api_key" {
594594
595595
</details>
596596
597-
<details><summary>`radio`: Radio buttons for selecting a single option with high visibility</summary>
597+
<details><summary>radio: Radio buttons for selecting a single option with high visibility</summary>
598598
599599
```tf
600600
data "coder_parameter" "environment" {
@@ -617,7 +617,7 @@ data "coder_parameter" "environment" {
617617
618618
</details>
619619
620-
<details><summary>`slider`: A slider for selecting numeric values within a range</summary>
620+
<details><summary>slider: A slider for selecting numeric values within a range</summary>
621621
622622
```tf
623623
data "coder_parameter" "cpu_cores" {
@@ -635,7 +635,7 @@ data "coder_parameter" "cpu_cores" {
635635
636636
</details>
637637
638-
<details><summary>`switch`: A toggle switch for boolean values</summary>
638+
<details><summary>switch: A toggle switch for boolean values</summary>
639639
640640
```tf
641641
data "coder_parameter" "advanced_mode" {
@@ -649,7 +649,7 @@ data "coder_parameter" "advanced_mode" {
649649
650650
</details>
651651
652-
<details><summary>`textarea`: A multi-line text input field for longer content</summary>
652+
<details><summary>textarea: A multi-line text input field for longer content</summary>
653653
654654
```tf
655655
data "coder_parameter" "init_script" {

0 commit comments

Comments
 (0)