Skip to content

Releases: cockroachdb/terraform-provider-cockroach

v1.7.0

20 May 05:58
bd06581
Compare
Choose a tag to compare

Added cockroach_metric_export_prometheus_config resource which allows to configure prometheus metric export integration in AWS and GCP cloud providers (#200).

v1.6.0

02 May 21:15
Compare
Choose a tag to compare
  • The cockroach_api_key
    resource was added.

  • The cockroach_service_account
    resource was added.

  • Added delete_protection to the Cluster resource and data source. When set
    to true, attempts to delete the cluster will fail. Set to false to disable
    delete protection.

v1.5.0

26 Apr 23:32
9c26a15
Compare
Choose a tag to compare
docs: add docs for private endpoint connections (#197)

v1.4.2

26 Apr 23:02
9c26a15
Compare
Choose a tag to compare
docs: add docs for private endpoint connections (#197)

v1.4.1

04 Apr 18:53
9c26a15
Compare
Choose a tag to compare
docs: add docs for private endpoint connections (#197)

v1.4.0

22 Mar 18:01
Compare
Choose a tag to compare
Update changelog for 1.4.0 release

v1.3.2

15 Mar 20:39
f641a7e
Compare
Choose a tag to compare
private endpoint services: support all clouds (#189)

* private endpoint services: support all clouds

Previously, the private_endpoint_services resource only supported the
creation of AWS private endpoint services. This commit removes this
restriction, now all clouds are supported. Additionally this commit
fixes a bug that caused the private_endpoint_service resource to be
created without the resource state being loaded into the state file.
Lastly, this commit bumps the CRDB version used for testing.

* changelog: update for v1.3.2

v1.3.1

04 Dec 15:33
94f1502
Compare
Choose a tag to compare
changelog: prep 1.3.1 release (#175)

v1.3.0

15 Sep 19:08
1e62020
Compare
Choose a tag to compare
Revert "Replace list attribute with sets (#163)" (#166)

This reverts commit 551369a73d92e53298fcec2c0922d19c45398b63.

v1.2.0

13 Sep 19:15
ff0153b
Compare
Choose a tag to compare
.github/workflows: split release into pre-release-ci and release (man…

…ual) (#164)

Previously, we run the release workflow automatically whenever a v* tag
gets pushed. The existing workflow does not work because the tests can be
flaky. When that happens, there's no way to release a new TF version since
goreleaser will only run once all the acceptance tests pass.

Until the flakiness goes away, we will split the release workflow into
two: pre-release-ci (that runs automatically like before), and release (which
has to be triggered manually after all the acceptance tests are triaged).