Skip to content

Commit a3f4609

Browse files
committed
fixup!
1 parent 0b38ec2 commit a3f4609

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/data-sources/parameter.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,9 @@ data "coder_parameter" "home_volume_size" {
147147
- `ephemeral` (Boolean) The value of an ephemeral parameter will not be preserved between consecutive workspace builds.
148148
- `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!
150-
- `option` (Block List, Max: 64) Each "option" block defines a value for a user to select from. (see [below for nested schema](#nestedblock--option))
150+
- `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).
152-
- `type` (String) The type of this parameter. Must be one of: "number", "string", "bool", or "list(string)".
152+
- `type` (String) The type of this parameter. Must be one of: `number`, `string`, `bool`, or `list(string)`.
153153
- `validation` (Block List, Max: 1) Validate the input of a parameter. (see [below for nested schema](#nestedblock--validation))
154154

155155
### Read-Only

docs/resources/app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ resource "coder_app" "vim" {
6363
- `display_name` (String) A display name to identify the app. Defaults to the slug.
6464
- `external` (Boolean) Specifies whether `url` is opened on the client machine instead of proxied through the workspace.
6565
- `healthcheck` (Block Set, Max: 1) HTTP health checking to determine the application readiness. (see [below for nested schema](#nestedblock--healthcheck))
66-
- `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>`.
66+
- `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>"`.
6767
- `name` (String, Deprecated: `name` on apps is deprecated, use `display_name` instead) A display name to identify the app.
6868
- `order` (Number) The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order).
6969
- `relative_path` (Boolean, Deprecated: `relative_path` on apps is deprecated, use `subdomain` instead.) Specifies whether the URL will be accessed via a relative path or wildcard. Use if wildcard routing is unavailable. Defaults to `true`.

docs/resources/script.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ resource "coder_script" "shutdown" {
7272

7373
### Required
7474

75-
- `agent_id` (String) The "id" property of a "coder_agent" resource to associate with.
75+
- `agent_id` (String) The `id` property of a `coder_agent` resource to associate with.
7676
- `display_name` (String) The display name of the script to display logs in the dashboard.
7777
- `script` (String) The content of the script that will be run.
7878

0 commit comments

Comments
 (0)