Skip to content

v1.5.0

Compare
Choose a tag to compare
@rjeczalik rjeczalik released this 20 Feb 15:58
· 31 commits to main since this release

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