Skip to content

Commit d8f0953

Browse files
jor2Jordan-Williams2
andauthored
feat: added support for 3.13, removed support for 3.11 (#266)
Co-authored-by: Jordan-Williams2 <[email protected]>
1 parent 5a032cc commit d8f0953

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/pr_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func TestRunFSCloudExample(t *testing.T) {
5858
"access_tags": permanentResources["accessTags"],
5959
"existing_kms_instance_guid": permanentResources["hpcs_south"],
6060
"kms_key_crn": permanentResources["hpcs_south_root_key_crn"],
61-
"rabbitmq_version": "3.12", // Always lock this test into the latest supported RabbitMQ version
61+
"rabbitmq_version": "3.13", // Always lock this test into the latest supported RabbitMQ version
6262
},
6363
CloudInfoService: sharedInfoSvc,
6464
})
@@ -87,7 +87,7 @@ func TestRunCompleteUpgradeExample(t *testing.T) {
8787
BestRegionYAMLPath: regionSelectionPath,
8888
ResourceGroup: resourceGroup,
8989
TerraformVars: map[string]interface{}{
90-
"rabbitmq_version": "3.11", // Always lock to the lowest supported RabbitMQ version
90+
"rabbitmq_version": "3.12", // Always lock to the lowest supported RabbitMQ version
9191
"users": []map[string]interface{}{
9292
{
9393
"name": "testuser",

variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ variable "rabbitmq_version" {
2020
validation {
2121
condition = anytrue([
2222
var.rabbitmq_version == null,
23-
var.rabbitmq_version == "3.11",
24-
var.rabbitmq_version == "3.12"
23+
var.rabbitmq_version == "3.12",
24+
var.rabbitmq_version == "3.13"
2525
])
26-
error_message = "Version must be 3.11 or 3.12. If no value passed, the current ICD preferred version is used."
26+
error_message = "Version must be 3.12 or 3.13. If no value passed, the current ICD preferred version is used."
2727
}
2828
}
2929

0 commit comments

Comments
 (0)