Skip to content

Commit 2680a83

Browse files
committed
chore: update workspace resource description
1 parent 5469e66 commit 2680a83

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/data-sources/workspace.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ resource "docker_container" "workspace" {
6767
### Read-Only
6868

6969
- `access_port` (Number) The access port of the Coder deployment provisioning this workspace.
70-
- `access_url` (String) The access URL of the Coder deployment provisioning this workspace.
70+
- `access_url` (String) The access URL of the Coder deployment provisioning this workspace. This is the base URL without a trailing slash (e.g., "https://coder.example.com" or "https://coder.example.com:8080").
7171
- `id` (String) UUID of the workspace.
7272
- `is_prebuild` (Boolean) Similar to `prebuild_count`, but a boolean value instead of a count. This is set to true if the workspace is a currently unassigned prebuild. Once the workspace is assigned, this value will be false.
7373
- `is_prebuild_claim` (Boolean) Indicates whether a prebuilt workspace has just been claimed and this is the first `apply` after that occurrence.

provider/workspace.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func workspaceDataSource() *schema.Resource {
9898
"access_url": {
9999
Type: schema.TypeString,
100100
Computed: true,
101-
Description: "The access URL of the Coder deployment provisioning this workspace.",
101+
Description: `The access URL of the Coder deployment provisioning this workspace. This is the base URL without a trailing slash (e.g., "https://coder.example.com" or "https://coder.example.com:8080").`,
102102
},
103103
"access_port": {
104104
Type: schema.TypeInt,

0 commit comments

Comments
 (0)