Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(organization_user_group): make description field required #1583

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
byashimov marked this conversation as resolved.
Show resolved Hide resolved

## [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
Loading