Skip to content

Commit

Permalink
Fix member role formatting in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieu-benoit authored May 1, 2024
1 parent 76b54da commit e2277d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ An entity or individual who has access to the Humanitec platform.
### Required

- `name` (String) The name the user goes by.
- `role` (String) The role that the service user should have on the organization it is created in. Could be member`, `artefactContributor`, `manager` or `administrator`.
- `role` (String) The role that the service user should have on the organization it is created in. Could be `member`, `artefactContributor`, `manager` or `administrator`.
- `type` (String) The type of the account. Could be `user`, `service` or `system`.

### Optional
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resource_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (r *ResourceUser) Schema(ctx context.Context, req resource.SchemaRequest, r
},
},
"role": schema.StringAttribute{
MarkdownDescription: "The role that the service user should have on the organization it is created in. Could be member`, `artefactContributor`, `manager` or `administrator`.",
MarkdownDescription: "The role that the service user should have on the organization it is created in. Could be `member`, `artefactContributor`, `manager` or `administrator`.",
Required: true,
},
"type": schema.StringAttribute{
Expand Down

0 comments on commit e2277d7

Please sign in to comment.