Releases: redpanda-data/terraform-provider-redpanda
Releases · redpanda-data/terraform-provider-redpanda
v0.9.1
v0.9.0
We are out of alpha and in beta!
What's Changed
- chore(deps): bump github.com/hashicorp/terraform-plugin-docs from 0.18.0 to 0.19.4 by @dependabot in #93
- fix: Make rule tf-init should delete lockfile to avoid checksum errors by @ligfx in #141
- fix: docs for resource_group data source now explain searching by id or name by @ligfx in #142
- gha: update to use oidc by @andrewhsu in #131
- Enable Azure by @gene-redpanda in #138
- feat: support passing in access tokens instead of client_id and client_secret by @ligfx in #157
- fix: serverless_cluster requires serverless_region by @ligfx in #146
- fix: allow cluster update when only "allow_deletion" changed by @ligfx in #144
- feat: add redpanda_region, redpanda_regions, redpanda_serverless_regions, redpanda_throughput_tiers data sources by @ligfx in #147
- fix: allow updates to aws_private_link.connect_console by @ligfx in #152
- feat: minimal resource states when creating and when read while deleting by @ligfx in #158
- chore: don't validate throughput tier when creating cluster by @ligfx in #159
- feat: allow updating cluster name in-place by @ligfx in #161
- fix: in buildkite show debug logs for azure and network tests by @ligfx in #162
Full Changelog: v0.8.0...v0.9.0
v0.8.0
What's Changed
- gha: fix node16 warn by @andrewhsu in #126
- Testing Improvements by @gene-redpanda in #127
- chore: bump to dataplanev1alpha2 by @gene-redpanda in #134
- Validate Tiers Against API by @gene-redpanda in #135
- chore(deps): bump github.com/hashicorp/terraform-plugin-testing from 1.8.0 to 1.10.0 by @dependabot in #130
- chore(deps): bump golang.org/x/time from 0.5.0 to 0.6.0 by @dependabot in #128
- fix: speed up network creation/deletion checking of op status from 1m to 1s by @ligfx in #137
- Feature: Allow looking up resource_group data source by name by @ligfx in #136
New Contributors
Full Changelog: v0.7.0...v0.8.0
v0.7.0
What's Changed
- cloud: remove extra polling on long running create operations by @ajyoung in #121
- Adds Private Link/Connect Support for AWS and GCP by @gene-redpanda in #115
- Cloud Parity Work by @gene-redpanda in #123
Full Changelog: v0.6.0...v0.7.0
v0.6.0
What's Changed
- gha: modify release to use aws sm by @andrewhsu in #106
- serverless: add resource and data source for public api by @ajyoung in #109
- Add support for Cloud's new rate limit headers by @gene-redpanda in #112
New Contributors
- @andrewhsu made their first contribution in #106
- @ajyoung made their first contribution in #109
Full Changelog: v0.5.1...v0.6.0
v0.5.1
What's Changed
- doc: remove line that is not correct for the current version by @gene-redpanda in #110
Full Changelog: v0.5.0...v0.5.1
v0.5.0
Breaking Changes
Namespace resource:
- Rename resource
redpanda_namespace
toredpanda_resource_group
# Before:
resource "redpanda_namespace" "test" {
name = "foo"
}
# Now:
resource "redpanda_resource_group" "test" {
name = "foo"
}
Cluster and Network resources:
- Rename field
namespace_id
toresource_group_id
in Cluster and Network resource
# Before:
resource "redpanda_network" "test" {
namespace_id = <ID>
...
}
resource "redpanda_cluster" "test" {
namespace_id = <ID>
...
}
# Now:
resource "redpanda_network" "test" {
resource_group_id = <ID>
...
}
resource "redpanda_cluster" "test" {
resource_group_id = <ID>
...
}
Changelog
v0.4.3
Merge pull request #75 from redpanda-data/topic-cfg-remove topic config: support removal of state configs
v0.4.2
Merge pull request #72 from redpanda-data/clean-config topic: remove cleanup.policy filtering
v0.4.1
Merge pull request #63 from redpanda-data/conn-improvements [bug] Reuse and close connections per resource