Skip to content

Commit

Permalink
doc: make description field required
Browse files Browse the repository at this point in the history
  • Loading branch information
staceysalamon-aiven committed Feb 8, 2024
1 parent 32d4de1 commit 0293b42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/organization_user_group.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ Creates and manages a user group in an organization.

### Required

- `description` (String) The description of the user group. This property cannot be changed, doing so forces recreation of the resource.
- `organization_id` (String) The ID of the organization. This property cannot be changed, doing so forces recreation of the resource.

### Optional

- `description` (String) The description of the user group. This property cannot be changed, doing so forces recreation of the resource.
- `name` (String) The name of the user group. This property cannot be changed, doing so forces recreation of the resource.
- `timeouts` (Block, Optional) (see [below for nested schema](#nestedblock--timeouts))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var aivenOrganizationUserGroupSchema = map[string]*schema.Schema{
},
"description": {
Type: schema.TypeString,
Optional: true,
Required: true,
Description: userconfig.Desc("The description of the user group.").ForceNew().Build(),
},
"create_time": {
Expand Down

0 comments on commit 0293b42

Please sign in to comment.