From 52eb2e9bf51ee808a57b97b0ec5c38ecf6ea537f Mon Sep 17 00:00:00 2001 From: Viktor Ribchev Date: Tue, 20 Aug 2024 07:23:38 +0300 Subject: [PATCH] Revert "updated GDB version to 10.7.3" This reverts commit 1b97d25b9e4d84ea3afc39c9c5093f11f128dc41. --- CHANGELOG.md | 4 ---- README.md | 2 +- variables.tf | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fc1dd2..d36a869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,5 @@ # GraphDB AWS Terraform Module Changelog -# 1.2.5 - -* Update default GraphDB version to [10.7.3](https://graphdb.ontotext.com/documentation/10.7/release-notes.html#graphdb-10-7-3) - # 1.2.4 * Update default GraphDB version to [10.7.2](https://graphdb.ontotext.com/documentation/10.7/release-notes.html#graphdb-10-7-2) diff --git a/README.md b/README.md index 909222e..bd62eea 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,7 @@ Note: The options mention above will be appended to the ones set in the user dat **Customize GraphDB Version** ```hcl -graphdb_version = "10.7.3" +graphdb_version = "10.7.2" ``` **Purge Protection** diff --git a/variables.tf b/variables.tf index 8cfcace..6ba18c7 100644 --- a/variables.tf +++ b/variables.tf @@ -229,7 +229,7 @@ variable "ami_id" { variable "graphdb_version" { description = "GraphDB version" type = string - default = "10.7.3" + default = "10.7.2" nullable = false }