Skip to content

Commit 1dcaa91

Browse files
authored
feat: add support for rabitmq version 3.12 (#128)
1 parent 0219143 commit 1dcaa91

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/pr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func TestRunFSCloudExample(t *testing.T) {
5454
"access_tags": permanentResources["accessTags"],
5555
"existing_kms_instance_guid": permanentResources["hpcs_south"],
5656
"kms_key_crn": permanentResources["hpcs_south_root_key_crn"],
57-
"rabbitmq_version": "3.11", // Always lock this test into the latest supported RabbitMQ version
57+
"rabbitmq_version": "3.12", // Always lock this test into the latest supported RabbitMQ version
5858
},
5959
})
6060

variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,10 @@ variable "rabbitmq_version" {
5454
validation {
5555
condition = anytrue([
5656
var.rabbitmq_version == null,
57-
var.rabbitmq_version == "3.11"
57+
var.rabbitmq_version == "3.11",
58+
var.rabbitmq_version == "3.12"
5859
])
59-
error_message = "Version must be 3.11. If no value passed, the current ICD preferred version is used."
60+
error_message = "Version must be 3.11 or 3.12. If no value passed, the current ICD preferred version is used."
6061
}
6162
}
6263

0 commit comments

Comments
 (0)