Skip to content

Commit

Permalink
fix(organization_user_group): make description field required (#1583)
Browse files Browse the repository at this point in the history
  • Loading branch information
staceysalamon-aiven authored Feb 8, 2024
1 parent 32d4de1 commit c9e2c72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nav_order: 1
- Fix `aiven_kafka_schema` JSON object diff suppress function
- Add new user config generator
- Use `TypeSet` for `ip_filter`, `ip_filter_string` fields

- Fix `aiven_organization_user_group` resource - `description` field is required

## [4.13.3] - 2024-01-29

Expand Down
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 c9e2c72

Please sign in to comment.