Skip to content

Commit c52299b

Browse files
committed
fix: add back variables removed in last release
Unfortunately our earlier `*-cluster` Terraform modules depened on the `master` version of this module. Removing these variables in the 2.0.0 release broke those clients, so we're adding them back here without using them.
1 parent d1cc2e9 commit c52299b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

variables.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,15 @@ variable "skip_helm" {
6666
type = bool
6767
default = false
6868
}
69+
70+
variable "cluster_region" {
71+
description = "Not used. This variable is kept for backwards compatibility, will be removed in the future."
72+
type = string
73+
default = ""
74+
}
75+
76+
variable "cluster_zone" {
77+
description = "Not used. This variable is kept for backwards compatibility, will be removed in the future."
78+
type = string
79+
default = ""
80+
}

0 commit comments

Comments
 (0)