Skip to content

Commit 4ee8b84

Browse files
committed
beta tag; remove key-value
1 parent 82af2e0 commit 4ee8b84

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

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

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ 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 (Early Access)
395+
## Dynamic Parameters (Beta)
396396
397397
Dynamic Parameters enhances Coder's existing parameter system with real-time validation,
398398
conditional parameter behavior, and richer input types.
@@ -461,7 +461,6 @@ Dynamic Parameters introduces three primary enhancements to the standard paramet
461461
- Searchable dropdown lists for easier selection
462462
- Multi-select options for choosing multiple items
463463
- Secret text inputs for sensitive information
464-
- Key-value pair inputs for complex data
465464
- Button parameters for toggling sections
466465
467466
## Available Form Input Types
@@ -539,20 +538,6 @@ data "coder_parameter" "custom_domain" {
539538
540539
</details>
541540
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-
556541
<details><summary>multi-select: Checkboxes for selecting multiple options from a list</summary>
557542
558543
```tf

0 commit comments

Comments
 (0)