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: remove aiven_thanos from beta resources #1856

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

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

- Remove `aiven_thanos` from beta resources

## [4.26.0] - 2024-09-25

- Remove `aiven_valkey` from beta resources
Expand Down
7 changes: 1 addition & 6 deletions docs/data-sources/thanos.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,11 @@ page_title: "aiven_thanos Data Source - terraform-provider-aiven"
subcategory: ""
description: |-
Gets information about an Aiven for Thanos® 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_thanos (Data Source)

Gets information about an Aiven for Thanos® 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 Thanos® service.



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

Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) 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 Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.



Expand Down
5 changes: 1 addition & 4 deletions internal/sdkprovider/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,10 @@ func Provider(version string) (*schema.Provider, error) {

// Adds "beta" warning to the description
betaResources := []string{
"aiven_thanos",
"aiven_organization_permission",
}

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

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