Skip to content
This repository was archived by the owner on Jun 30, 2025. It is now read-only.

Commit e8c934d

Browse files
Khuzaima05Khuzaima-Shakeelocofaigh
authored
feat: removed support for deprecated version 3.3 (#132)
Co-authored-by: Khuzaima-Shakeel <[email protected]> Co-authored-by: Conall Ó Cofaigh <[email protected]>
1 parent 3aa47f2 commit e8c934d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/pr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func TestRunCompleteUpgradeExample(t *testing.T) {
9595
ResourceGroup: resourceGroup,
9696
BestRegionYAMLPath: regionSelectionPath,
9797
TerraformVars: map[string]interface{}{
98-
"etcd_version": "3.3", // should always test the lowest available version of etcd that the module supports
98+
"etcd_version": "3.4", // should always test the lowest available version of etcd that the module supports
9999
"users": []map[string]interface{}{
100100
{
101101
"name": "testuser",

variables.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ variable "etcd_version" {
2020
condition = anytrue([
2121
var.etcd_version == null,
2222
var.etcd_version == "3.5",
23-
var.etcd_version == "3.4",
24-
var.etcd_version == "3.3"
23+
var.etcd_version == "3.4"
2524
])
26-
error_message = "Version must be 3.5, 3.4 or 3.3. "
25+
error_message = "Version must be 3.5 or 3.4."
2726
}
2827
}
2928

0 commit comments

Comments
 (0)