@@ -392,7 +392,7 @@ parameters in one of two ways:
392
392
393
393
Or set the [environment variable](../../setup/index.md),` CODER_EXPERIMENTS=auto-fill-parameters`
394
394
395
- ## Dynamic Parameters (Early Access )
395
+ ## Dynamic Parameters (Beta )
396
396
397
397
Dynamic Parameters enhances Coder' s existing parameter system with real-time validation,
398
398
conditional parameter behavior, and richer input types.
@@ -461,7 +461,6 @@ Dynamic Parameters introduces three primary enhancements to the standard paramet
461
461
- Searchable dropdown listsfor easier selection
462
462
- Multi-select optionsfor choosing multiple items
463
463
- Secret text inputsfor sensitive information
464
- - Key-value pair inputsfor complex data
465
464
- Button parametersfor toggling sections
466
465
467
466
# # Available Form Input Types
@@ -539,20 +538,6 @@ data "coder_parameter" "custom_domain" {
539
538
540
539
</details>
541
540
542
- <details><summary>key-value: Input for entering key-value pairs</summary>
543
-
544
- ```tf
545
- data "coder_parameter" "environment_vars" {
546
- name = "environment_vars"
547
- display_name = "Environment Variables"
548
- type = "string"
549
- form_type = "key-value"
550
- default = jsonencode({"NODE_ENV": "development"})
551
- }
552
- ```
553
-
554
- </details>
555
-
556
541
<details><summary>multi-select: Checkboxes for selecting multiple options from a list</summary>
557
542
558
543
```tf