Skip to content

Releases: scylladb/terraform-provider-scylladbcloud

v1.8.0

21 Aug 04:25
Compare
Choose a tag to compare

Improvements:

  • internal/provider: add optional metadata param (#161)

by @rjeczalik

v1.7.0

12 Jul 11:16
25d3e37
Compare
Choose a tag to compare

Improvements:

  • added support for configuring the provider via environment variables (SCYLLADB_CLOUD_TOKEN) (#157)
  • added integration with automation flows which are managed by Stacks API (#155)

by @rjeczalik

v1.6.1

15 Apr 09:23
a7cd544
Compare
Choose a tag to compare

Bug fixes:

  • scylladbcloud_cql_auth: deprecate datacenter_id attribute in favour of datacenter (#131)
  • improvements for handling deleted state (#135, #138)
  • scylladbcloud_vpc_peering: fix a crash caused by nil ptr deref (#133)

by @dkropachev

v1.6.0

27 Mar 07:45
Compare
Choose a tag to compare

Improvements and bug fixes:

  • new node_disk_size attribute for scylladbcloud_cluster resource (#125)
  • internal improvement: rest client is more resilient (#124)

by @ksinica @rjeczalik

v1.5.0

20 Feb 15:58
Compare
Choose a tag to compare

Improvements and bug fixes:

  • resource/vpc_peering: deprecate peer_cidr_block attribute (#113)

This PR deprecated the peer_cidr_block attribute, since having two redundant attributes proved to be problematic and broke idempotency property of templates that defined the vpc_peering resource.

Existing Terraform templates need to be adapted by switching to peer_cidr_blocks attribute, which is fairly straightforward - they just need to be changed from:

resource "scylladbcloud_vpc_peering" "x" {
    ...

    peer_cidr_block = "10.0.0.0/16"

    ...
}

to:

resource "scylladbcloud_vpc_peering" "x" {
    ...

    peer_cidr_blocks = ["10.0.0.0/16"]

    ...
}
  • fix: handle AllowCQL and AlternatorWriteIsolation on resource read (#114)

by @charconstpointer @rjeczalik

v1.4.2

30 Jan 13:11
Compare
Choose a tag to compare

Bug fixes:

  • internal/vpc_peering: set peer_cidr_blocks attribute during state refreash (a924867)

v1.4.1

11 Oct 07:02
0481d94
Compare
Choose a tag to compare

Bug fixes:

  • handle http.StatusTooManyRequests api response status (0481d94)

by @dkropachev

v1.4.0

15 Sep 14:50
Compare
Choose a tag to compare

Improvements:

  • introduced scylladbcloud_vpc_peering.peer_cidr_blocks attribute (80f09d8)

Bug fixes:

  • improve status handling of deleted cluster (1bfc3ff)

by @charconstpointer & @dkropachev

v1.3.2

07 Jul 19:47
Compare
Choose a tag to compare

Improvements:

  • internal/scylla: update error codes (c6fb4a1)

by @rjeczalik

v1.3.1

06 Jul 08:08
Compare
Choose a tag to compare

Improvements:

by @rjeczalik