Releases: scylladb/terraform-provider-scylladbcloud
Releases · scylladb/terraform-provider-scylladbcloud
v1.9.0
What's Changed
- internal/provider/connection: fix lint warnings by @rjeczalik in #180
- chore: update CODEOWNERS by @charconstpointer in #185
- remove userFriendlyError, filed was empty and is deprecated by @k2sdb in #190
- docs(readme): Update Scylla Cloud API Token link by @mrVanboy in #202
- fix: Allow use of
byoa_idwhen creating GCP clusters by @bisscuitt in #206 - feat(cql_auth): add cluster name to data source by @guicrocetti in #201
- doc: add the limitation to the provider docs by @annastuchlik in #196
- ci: bump action versions in GitHub workflows by @adambabik in #210
- build(deps): bump golang.org/x/net from 0.34.0 to 0.38.0 by @dependabot[bot] in #212
- build: update Go deps by @adambabik in #213
- Potential fix for code scanning alert no. 2: Workflow does not contain permissions by @mykaul in #217
- chore(dependabot): update assignees by @adambabik in #219
- fix(model): fix Cluster and ScyllaVersion by @adambabik in #214
- fix(cluster): fix instance validation in cluster creation by @adambabik in #218
New Contributors
- @k2sdb made their first contribution in #190
- @mrVanboy made their first contribution in #202
- @bisscuitt made their first contribution in #206
- @guicrocetti made their first contribution in #201
- @adambabik made their first contribution in #210
- @mykaul made their first contribution in #217
Full Changelog: v1.8.1...v1.9.0
v1.8.1
v1.8.0
v1.7.0
v1.6.1
v1.6.0
v1.5.0
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)