File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ func TestRunRedisFSCloudExample(t *testing.T) {
57
57
*/
58
58
//ResourceGroup: resourceGroup,
59
59
TerraformVars : map [string ]interface {}{
60
- "redis_version" : "6 .2" , // Always lock this test into the latest supported Redis version
60
+ "redis_version" : "7 .2" , // Always lock this test into the latest supported Redis version
61
61
"existing_kms_instance_guid" : permanentResources ["hpcs_south" ],
62
62
"kms_key_crn" : permanentResources ["hpcs_south_root_key_crn" ],
63
63
},
Original file line number Diff line number Diff line change @@ -14,9 +14,10 @@ variable "redis_version" {
14
14
validation {
15
15
condition = anytrue ([
16
16
var . redis_version == null ,
17
- var . redis_version == " 6.2"
17
+ var . redis_version == " 6.2" ,
18
+ var . redis_version == " 7.2"
18
19
])
19
- error_message = " Version must be 6.2. If no value passed, the current ICD preferred version is used."
20
+ error_message = " Version must be 6.2 or 7.2 . If no value passed, the current ICD preferred version is used."
20
21
}
21
22
}
22
23
You can’t perform that action at this time.
0 commit comments