diff --git a/CHANGELOG.md b/CHANGELOG.md index 079e55423..12447df47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,10 +9,10 @@ nav_order: 1 -## [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 diff --git a/docs/data-sources/organization_user_list.md b/docs/data-sources/organization_user_list.md index d573bb4dc..4e113bbba 100644 --- a/docs/data-sources/organization_user_list.md +++ b/docs/data-sources/organization_user_list.md @@ -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. diff --git a/internal/sdkprovider/provider/provider.go b/internal/sdkprovider/provider/provider.go index 9794046d9..ef9163483 100644 --- a/internal/sdkprovider/provider/provider.go +++ b/internal/sdkprovider/provider/provider.go @@ -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...),