Skip to content

Commit a3befe9

Browse files
committed
fixed icon link for coder_parameter
1 parent 031b5d0 commit a3befe9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/data-sources/parameter.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ data "coder_parameter" "home_volume_size" {
145145
- `description` (String) Describe what this parameter does.
146146
- `display_name` (String) The displayed name of the parameter as it will appear in the interface.
147147
- `ephemeral` (Boolean) The value of an ephemeral parameter will not be preserved between consecutive workspace builds.
148-
- `icon` (String) A URL to an icon that will display in the dashboard. View built-in icons here: https://github.com/coder/coder/tree/main/site/static/icon. Use a built-in icon with `data.coder_workspace.me.access_url + "/icon/<path>"`.
148+
- `icon` (String) A URL to an icon that will display in the dashboard. View built-in icons [here](https://github.com/coder/coder/tree/main/site/static/icon). Use a built-in icon with `data.coder_workspace.me.access_url + "/icon/<path>"`.
149149
- `mutable` (Boolean) Whether this value can be changed after workspace creation. This can be destructive for values like region, so use with caution!
150150
- `option` (Block List, Max: 64) Each "option" block defines a value for a user to select from. (see [below for nested schema](#nestedblock--option))
151151
- `order` (Number) The order determines the position of a template parameter in the UI/CLI presentation. The lowest order is shown first and parameters with equal order are sorted by name (ascending order).

provider/parameter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ func parameterDataSource() *schema.Resource {
220220
"icon": {
221221
Type: schema.TypeString,
222222
Description: "A URL to an icon that will display in the dashboard. View built-in " +
223-
"icons here: https://github.com/coder/coder/tree/main/site/static/icon. Use a " +
223+
"icons [here](https://github.com/coder/coder/tree/main/site/static/icon). Use a " +
224224
"built-in icon with `data.coder_workspace.me.access_url + \"/icon/<path>\"`.",
225225
ForceNew: true,
226226
Optional: true,

0 commit comments

Comments
 (0)