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

feat: promote aiven_valkey and aiven_valkey_user out of beta #1851

Merged
merged 3 commits into from
Sep 25, 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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ nav_order: 1
<!-- Always keep the following header in place: -->
<!-- ## [MAJOR.MINOR.PATCH] - YYYY-MM-DD -->

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

- Remove `aiven_valkey` from beta resources
- Remove `aiven_valkey_user` from beta resources

## [4.25.0] - 2024-09-17

- Fix `aiven_kafka_connector`: increase create polling timeout
Expand Down
7 changes: 1 addition & 6 deletions docs/data-sources/valkey.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,11 @@ page_title: "aiven_valkey Data Source - terraform-provider-aiven"
subcategory: ""
description: |-
Gets information about an Aiven for Valkey service.
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_valkey (Data Source)

Gets information about an Aiven for Valkey service.

**This resource is in the beta stage and may change without notice.** Set
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
Gets information about an Aiven for Valkey service.

## Example Usage

Expand Down
7 changes: 1 addition & 6 deletions docs/data-sources/valkey_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,11 @@ page_title: "aiven_valkey_user Data Source - terraform-provider-aiven"
subcategory: ""
description: |-
The Valkey User data source provides information about the existing Aiven for Valkey user.
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_valkey_user (Data Source)

The Valkey User data source provides information about the existing Aiven for Valkey user.

**This resource is in the beta stage and may change without notice.** Set
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
The Valkey User data source provides information about the existing Aiven for Valkey user.



Expand Down
7 changes: 1 addition & 6 deletions docs/resources/valkey.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,11 @@ page_title: "aiven_valkey Resource - terraform-provider-aiven"
subcategory: ""
description: |-
Creates and manages an Aiven for Valkey https://aiven.io/docs/products/valkey service.
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_valkey (Resource)

Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.

**This resource is in the beta stage and may change without notice.** Set
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.

## Example Usage

Expand Down
7 changes: 1 addition & 6 deletions docs/resources/valkey_user.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,11 @@ page_title: "aiven_valkey_user Resource - terraform-provider-aiven"
subcategory: ""
description: |-
Creates and manages an Aiven for Valkey https://aiven.io/docs/products/valkey user.
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_valkey_user (Resource)

Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) user.

**This resource is in the beta stage and may change without notice.** Set
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) user.



Expand Down
4 changes: 0 additions & 4 deletions internal/sdkprovider/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,15 +278,11 @@ func Provider(version string) (*schema.Provider, error) {
// Adds "beta" warning to the description
betaResources := []string{
"aiven_thanos",
"aiven_valkey",
"aiven_valkey_user",
"aiven_organization_permission",
}

betaDataSources := []string{
"aiven_thanos",
"aiven_valkey",
"aiven_valkey_user",
}

missing := append(
Expand Down