You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MarkdownDescription: "A group on the Coder deployment. If you want to have a group resource with unmanaged members, but still want to read the members in Terraform, use the `data.coderd_group` data source. Creating groups requires an Enterprise license.",
63
+
MarkdownDescription: "A group on the Coder deployment.\n\nTo have a group resource with unmanaged members, but be able to read the members in Terraform, use the `data.coderd_group` data source. Creating groups requires an Enterprise license.",
The coderd provider can be used to manage resources on a Coder deployment. The provider exposes resources and data sources for users, groups, templates, and workspace proxies.
57
+
56
58
~> **Warning**
57
59
This provider is only compatible with Coder version [2.10.1](https://github.com/coder/coder/releases/tag/v2.10.1) and later.
58
60
`,
59
61
Attributes: map[string]schema.Attribute{
60
62
"url": schema.StringAttribute{
61
-
MarkdownDescription: "URL to the Coder deployment. Defaults to $CODER_URL.",
63
+
MarkdownDescription: "URL to the Coder deployment. Defaults to `$CODER_URL`.",
62
64
Optional: true,
63
65
},
64
66
"token": schema.StringAttribute{
65
-
MarkdownDescription: "API token for communicating with the deployment. Most resource types require elevated permissions. Defaults to $CODER_SESSION_TOKEN.",
67
+
MarkdownDescription: "API token for communicating with the deployment. Most resource types require elevated permissions. Defaults to `$CODER_SESSION_TOKEN`.",
MarkdownDescription: "If set, the template will be marked as deprecated and users will be blocked from creating new workspaces from it.",
364
+
MarkdownDescription: "If set, the template will be marked as deprecated and users will be blocked from creating new workspaces from it. The provided message will be displayed.",
365
365
Optional: true,
366
366
Computed: true,
367
367
Default: stringdefault.StaticString(""),
368
368
},
369
369
"acl": schema.SingleNestedAttribute{
370
-
MarkdownDescription: "(Enterprise) Access control list for the template. If null, ACL policies will not be addedor removed by Terraform.",
370
+
MarkdownDescription: "(Enterprise) Access control list for the template. If null, ACL policies will not be added, removed, or inspected by Terraform.",
0 commit comments