Skip to content

Commit c6b153c

Browse files
authored
feat(deps): Removed support for version 5.0 as this version is no longer available from IBM Cloud Databases (#458)
1 parent 9cc9b0a commit c6b153c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

tests/pr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func TestRunCompleteUpgradeExample(t *testing.T) {
9494
BestRegionYAMLPath: regionSelectionPath,
9595
ResourceGroup: resourceGroup,
9696
TerraformVars: map[string]interface{}{
97-
"mongodb_version": "5.0", // Always lock to the lowest supported MongoDB version
97+
"mongodb_version": "6.0", // Always lock to the lowest supported MongoDB version
9898
"users": []map[string]interface{}{
9999
{
100100
"name": "testuser",

variables.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ variable "mongodb_version" {
2121
condition = anytrue([
2222
var.mongodb_version == null,
2323
var.mongodb_version == "6.0",
24-
var.mongodb_version == "5.0",
2524
])
26-
error_message = "Version must be 5.0 or 6.0. If no value is passed, the current preferred version of IBM Cloud Databases is used."
25+
error_message = "Version must be 6.0. If no value is passed, the current preferred version of IBM Cloud Databases is used."
2726
}
2827
}
2928

0 commit comments

Comments
 (0)