Skip to content

Releases: redpanda-data/terraform-provider-redpanda

v0.9.1

15 Oct 21:26
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.0...v0.9.1

v0.9.0

08 Oct 16:37
Compare
Choose a tag to compare

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

13 Sep 01:30
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.0...v0.8.0

v0.7.0

01 Aug 16:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.7.0

v0.6.0

10 Jul 20:14
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.1...v0.6.0

v0.5.1

26 Jun 18:37
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.0...v0.5.1

v0.5.0

11 Jun 17:27
b15aa2b
Compare
Choose a tag to compare

Breaking Changes

Namespace resource:

  • Rename resource redpanda_namespace to redpanda_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 to resource_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...v0.5.0

v0.4.3

22 Apr 20:45
f171117
Compare
Choose a tag to compare
Merge pull request #75 from redpanda-data/topic-cfg-remove

topic config: support removal of state configs

v0.4.2

22 Apr 15:19
a2681d7
Compare
Choose a tag to compare
Merge pull request #72 from redpanda-data/clean-config

topic: remove cleanup.policy filtering

v0.4.1

25 Mar 16:51
4549f76
Compare
Choose a tag to compare
Merge pull request #63 from redpanda-data/conn-improvements

[bug] Reuse and close connections per resource