Skip to content

Commit

Permalink
chore(release): v4.28.0 (#1873)
Browse files Browse the repository at this point in the history
  • Loading branch information
byashimov authored Oct 21, 2024
1 parent 5bdfae5 commit 3518573
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ nav_order: 1
<!-- Always keep the following header in place: -->
<!-- ## [MAJOR.MINOR.PATCH] - YYYY-MM-DD -->

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD
## [4.28.0] - 2024-10-21

- Fix `aiven_project`: can't migrate from `account_id` (deprecated) to `parent_id`
- Add `aiven_organization_user_list` resource
- Add `aiven_organization_user_list` beta resource
- Run client-side validation for `aiven_kafka_schema` AVRO type schema

## [4.27.0] - 2024-10-09
Expand Down
9 changes: 7 additions & 2 deletions docs/data-sources/organization_user_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@
page_title: "aiven_organization_user_list Data Source - terraform-provider-aiven"
subcategory: ""
description: |-
List of users of the organization
List of users of the organization.
This resource is in the beta stage and may change without notice. Set
the PROVIDER_AIVEN_ENABLE_BETA environment variable to use the resource.
---

# aiven_organization_user_list (Data Source)

List of users of the organization
List of users of the organization.

**This resource is in the beta stage and may change without notice.** Set
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.



Expand Down
4 changes: 3 additions & 1 deletion internal/sdkprovider/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,9 @@ func Provider(version string) (*schema.Provider, error) {
"aiven_organization_permission",
}

betaDataSources := []string{}
betaDataSources := []string{
"aiven_organization_user_list",
}

missing := append(
addBeta(p.ResourcesMap, betaResources...),
Expand Down

0 comments on commit 3518573

Please sign in to comment.