Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/resources/organization.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "coderd_organization" "blueberry" {
- `icon` (String)
- `org_sync_idp_groups` (Set of String) Claims from the IdP provider that will give users access to this organization.
- `role_sync` (Block, Optional) Role sync settings to sync organization roles from an IdP. (see [below for nested schema](#nestedblock--role_sync))
- `workspace_sharing` (String) Workspace sharing setting for the organization. Valid values are `everyone` and `none`.
- `workspace_sharing` (String) Workspace sharing setting for the organization. Valid values are `everyone` and `none`. Requires a Coder Deployment running v2.32.0 or later.

### Read-Only

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/organization_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ This resource is only compatible with Coder version [2.16.0](https://github.com/
},
"workspace_sharing": schema.StringAttribute{
MarkdownDescription: "Workspace sharing setting for the organization. " +
"Valid values are `everyone` and `none`.",
"Valid values are `everyone` and `none`. Requires a Coder Deployment running v2.32.0 or later.",
Optional: true,
Computed: true,
Validators: []validator.String{
Expand Down