Skip to content

Commit

Permalink
feat: added support for v16 (#462)
Browse files Browse the repository at this point in the history
Co-authored-by: Khuzaima-Shakeel <[email protected]>
  • Loading branch information
Khuzaima05 and Khuzaima-Shakeel authored Aug 2, 2024
1 parent b5a9518 commit f2e6388
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/pr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestRunFSCloudExample(t *testing.T) {
"access_tags": permanentResources["accessTags"],
"existing_kms_instance_guid": permanentResources["hpcs_south"],
"kms_key_crn": permanentResources["hpcs_south_root_key_crn"],
"pg_version": "15", // Always lock this test into the latest supported Postgres version
"pg_version": "16", // Always lock this test into the latest supported Postgres version
},
CloudInfoService: sharedInfoSvc,
})
Expand Down
3 changes: 2 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,13 @@ variable "pg_version" {
validation {
condition = anytrue([
var.pg_version == null,
var.pg_version == "16",
var.pg_version == "15",
var.pg_version == "14",
var.pg_version == "13",
var.pg_version == "12"
])
error_message = "Version must be 12, 13, 14 or 15. If no value passed, the current ICD preferred version is used."
error_message = "Version must be 12, 13, 14, 15 or 16. If no value passed, the current ICD preferred version is used."
}
}

Expand Down

0 comments on commit f2e6388

Please sign in to comment.