Skip to content

Commit f2e6388

Browse files
Khuzaima05Khuzaima-Shakeel
andauthored
feat: added support for v16 (#462)
Co-authored-by: Khuzaima-Shakeel <Khuzaima.Shakeel@ibm.com>
1 parent b5a9518 commit f2e6388

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/pr_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func TestRunFSCloudExample(t *testing.T) {
6060
"access_tags": permanentResources["accessTags"],
6161
"existing_kms_instance_guid": permanentResources["hpcs_south"],
6262
"kms_key_crn": permanentResources["hpcs_south_root_key_crn"],
63-
"pg_version": "15", // Always lock this test into the latest supported Postgres version
63+
"pg_version": "16", // Always lock this test into the latest supported Postgres version
6464
},
6565
CloudInfoService: sharedInfoSvc,
6666
})

variables.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,13 @@ variable "pg_version" {
2525
validation {
2626
condition = anytrue([
2727
var.pg_version == null,
28+
var.pg_version == "16",
2829
var.pg_version == "15",
2930
var.pg_version == "14",
3031
var.pg_version == "13",
3132
var.pg_version == "12"
3233
])
33-
error_message = "Version must be 12, 13, 14 or 15. If no value passed, the current ICD preferred version is used."
34+
error_message = "Version must be 12, 13, 14, 15 or 16. If no value passed, the current ICD preferred version is used."
3435
}
3536
}
3637

0 commit comments

Comments
 (0)