Skip to content

Commit adf93d5

Browse files
committed
docs
1 parent b606af1 commit adf93d5

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

docs/resources/provisioner_key.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# generated by https://github.com/hashicorp/terraform-plugin-docs
3+
page_title: "coderd_provisioner_key Resource - terraform-provider-coderd"
4+
subcategory: ""
5+
description: |-
6+
A provisioner key for a Coder deployment.
7+
---
8+
9+
# coderd_provisioner_key (Resource)
10+
11+
A provisioner key for a Coder deployment.
12+
13+
14+
15+
<!-- schema generated by tfplugindocs -->
16+
## Schema
17+
18+
### Required
19+
20+
- `name` (String) The name of the key.
21+
- `organization_id` (String) The organization that provisioners connected with this key will be connected to.
22+
23+
### Optional
24+
25+
- `tags` (Map of String) The tags that the provisioner will accept jobs for.
26+
27+
### Read-Only
28+
29+
- `key` (String, Sensitive) A provisionerkey key for Coder.

internal/provider/provisioner_key_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ func (r *ProvisionerKeyResource) Schema(ctx context.Context, req resource.Schema
5959
},
6060
},
6161
"tags": schema.MapAttribute{
62+
MarkdownDescription: "The tags that the provisioner will accept jobs for.",
6263
ElementType: types.StringType,
6364
Optional: true,
64-
MarkdownDescription: "The tags that the provisioner will accept jobs for.",
6565
PlanModifiers: []planmodifier.Map{
6666
mapplanmodifier.RequiresReplace(),
6767
},

0 commit comments

Comments
 (0)