Skip to content

Commit

Permalink
tweak descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
aslilac committed Nov 15, 2024
1 parent adf93d5 commit d307dff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/provisioner_key.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ A provisioner key for a Coder deployment.

### Optional

- `tags` (Map of String) The tags that the provisioner will accept jobs for.
- `tags` (Map of String) The tags that provisioners connected with this key will accept jobs for.

### Read-Only

- `key` (String, Sensitive) A provisionerkey key for Coder.
- `key` (String, Sensitive) The acquired provisioner key
4 changes: 2 additions & 2 deletions internal/provider/provisioner_key_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ func (r *ProvisionerKeyResource) Schema(ctx context.Context, req resource.Schema
},
},
"tags": schema.MapAttribute{
MarkdownDescription: "The tags that the provisioner will accept jobs for.",
MarkdownDescription: "The tags that provisioners connected with this key will accept jobs for.",
ElementType: types.StringType,
Optional: true,
PlanModifiers: []planmodifier.Map{
mapplanmodifier.RequiresReplace(),
},
},
"key": schema.StringAttribute{
MarkdownDescription: "A provisionerkey key for Coder.",
MarkdownDescription: "The acquired provisioner key",
Computed: true,
Sensitive: true,
},
Expand Down

0 comments on commit d307dff

Please sign in to comment.