diff --git a/CHANGELOG.md b/CHANGELOG.md index 7463ef4..18001eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # GraphDB AWS Terraform Module Changelog +## 1.3.2 + +* Update default GraphDB version to [10.8.2](https://graphdb.ontotext.com/documentation/10.8/release-notes.html#graphdb-10-8-2) + + ## 1.3.1 * Update default GraphDB version to [10.8.1](https://graphdb.ontotext.com/documentation/10.8/release-notes.html#graphdb-10-8-1) diff --git a/variables.tf b/variables.tf index d07f6b1..167c09a 100644 --- a/variables.tf +++ b/variables.tf @@ -229,7 +229,7 @@ variable "ami_id" { variable "graphdb_version" { description = "GraphDB version" type = string - default = "10.8.1" + default = "10.8.2" nullable = false }