Skip to content

Commit

Permalink
chore: release 4.13.1 (#1545)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-savciuc authored Jan 19, 2024
1 parent 7dce9e5 commit c86a365
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ nav_order: 1

## [MAJOR.MINOR.PATCH] - YYYY-MM-DD

## [4.13.1] - 2024-01-19

- Fix `aiven_organization_user` datasource get method

## [4.13.0] - 2024-01-12
Expand Down
3 changes: 3 additions & 0 deletions docs/resources/organization_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
page_title: "aiven_organization_user Resource - terraform-provider-aiven"
subcategory: ""
description: |-
This resource is deprecated; please use aiven_organization_user data source instead.
The Organization User resource allows the creation and management of an Aiven Organization User.
During the creation of aiven_organization_userresource, an email invitation will be sent
to a user using user_email address. If the user accepts an invitation, they will become
Expand All @@ -13,6 +15,7 @@ description: |-

# aiven_organization_user (Resource)

This resource is deprecated; please use aiven_organization_user data source instead.
The Organization User resource allows the creation and management of an Aiven Organization User.

During the creation of `aiven_organization_user`resource, an email invitation will be sent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ var aivenOrganizationUserSchema = map[string]*schema.Schema{
func ResourceOrganizationUser() *schema.Resource {
return &schema.Resource{
Description: `
This resource is deprecated; please use aiven_organization_user data source instead.
The Organization User resource allows the creation and management of an Aiven Organization User.
During the creation of ` + "`aiven_organization_user`" + `resource, an email invitation will be sent
Expand All @@ -74,10 +75,10 @@ eliminate the member from the organization if one has accepted an invitation pre
Timeouts: schemautil.DefaultResourceTimeouts(),
Schema: aivenOrganizationUserSchema,
DeprecationMessage: `
This resource is deprecated, please use aiven_organization_user datasource instead.
This resource is deprecated; please use aiven_organization_user data source instead.
Invitation of organization users is not supported anymore via Terraform. Therefore
creation of this resource is not supported anymore. We reccoemnd to use WebUI to create
and organization user invitation. And upon receiving an invitation, a user can accept it
creation of this resource is not supported anymore. We recommend using WebUI to create
and organization user invitations. Upon receiving an invitation, a user can accept it
using WebUI. Once accepted, the user will become a member of the organization and will
be able to access it via Terraform.
`,
Expand Down

0 comments on commit c86a365

Please sign in to comment.