From 3f739124d46b7055396c10bab2b59e5e57511d71 Mon Sep 17 00:00:00 2001 From: Viktor Ribchev Date: Fri, 7 Jun 2024 07:59:44 +0300 Subject: [PATCH 1/2] Updated GDB version to 10.6.4 --- CHANGELOG.md | 4 ++++ README.md | 2 +- variables.tf | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd33c97..c41e91e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # GraphDB AWS Terraform Module Changelog +## 1.0.1 + +* Updated GraphDB version to [10.6.4](https://graphdb.ontotext.com/documentation/10.6/release-notes.html#graphdb-10-6-4) + ## 1.0.0 Updated the user data scripts to allow setup of multi node cluster based on the `node_count` variable. Added ability for a node to rejoin the cluster if raft folder is empty or missing. diff --git a/README.md b/README.md index bb1ab03..f06b2f0 100644 --- a/README.md +++ b/README.md @@ -234,7 +234,7 @@ Note: The options mention above will be appended to the ones set in the user dat **Customize GraphDB Version** ```hcl -graphdb_version = "10.6.3" +graphdb_version = "10.6.4" ``` **Purge Protection** diff --git a/variables.tf b/variables.tf index a78dfa7..60b8fa8 100644 --- a/variables.tf +++ b/variables.tf @@ -217,7 +217,7 @@ variable "ami_id" { variable "graphdb_version" { description = "GraphDB version" type = string - default = "10.6.3" + default = "10.6.4" nullable = false } From 80178a8d6da3fe02e272c0c10c6a8138f8e0060b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 7 Jun 2024 05:00:57 +0000 Subject: [PATCH 2/2] terraform-docs: updated markdown table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f06b2f0..3a8c1c6 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Before you begin using this Terraform module, ensure you meet the following prer | vpc\_flow\_logs\_expiration\_days | Define the days after which the VPC flow logs should be deleted | `number` | `7` | no | | lb\_enable\_private\_access | Enable or disable the private access via PrivateLink to the GraphDB Cluster | `bool` | `false` | no | | ami\_id | (Optional) User-provided AMI ID to use with GraphDB instances. If you provide this value, please ensure it will work with the default userdata script (assumes latest version of Ubuntu LTS). Otherwise, please provide your own userdata script using the user\_supplied\_userdata\_path variable. | `string` | `null` | no | -| graphdb\_version | GraphDB version | `string` | `"10.6.3"` | no | +| graphdb\_version | GraphDB version | `string` | `"10.6.4"` | no | | device\_name | The device to which EBS volumes for the GraphDB data directory will be mapped. | `string` | `"/dev/sdf"` | no | | ebs\_volume\_type | Type of the EBS volumes, used by the GraphDB nodes. | `string` | `"gp3"` | no | | ebs\_volume\_size | The size of the EBS volumes, used by the GraphDB nodes. | `number` | `500` | no |