From d90fc1921fc3a2d248e87a73421f323ba32cbc7d Mon Sep 17 00:00:00 2001 From: Mihail Radkov Date: Fri, 20 Sep 2024 10:47:13 +0300 Subject: [PATCH 1/2] Update GraphDB version to 10.7.4 --- CHANGELOG.md | 17 +++++++++++------ variables.tf | 2 +- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fc1dd2..8402196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,19 @@ # GraphDB AWS Terraform Module Changelog -# 1.2.5 +## 1.2.6 + +* Fixed issue with wrong protocol leading to nodes miscommunication +* Update default GraphDB version to [10.7.4](https://graphdb.ontotext.com/documentation/10.7/release-notes.html#graphdb-10-7-4) + +## 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 +## 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) -# 1.2.3 +## 1.2.3 * Removed unused resource "aws_ssm_parameter" named "graphdb_lb_dns_name" * Fixed `graphdb.properties` values for single node deployment: @@ -19,17 +24,17 @@ * Change default EC2 instance type r6i.2xlarge * Update default GraphDB version to [10.7.1](https://graphdb.ontotext.com/documentation/10.7/release-notes.html#graphdb-10-7-1) -# 1.2.2 +## 1.2.2 * Fixed issues with variables in the backup user data script * Added ability to choose http port for Route53 availability check * Added ability to specify custom FQDN for the Route53 availability URL -# 1.2.1 +## 1.2.1 * Fixed issue where the backup script was not configured -# 1.2.0 +## 1.2.0 * Added support for single node deployment * Added new userdata script `10_start_graphdb_services.sh.tpl` for single node setup. diff --git a/variables.tf b/variables.tf index 8cfcace..7ba0f77 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.4" nullable = false } From 182c79825942ef645d4d528c31ef9cf19dda84ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Sep 2024 07:48:07 +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 7b82513..2cbc6cd 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,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.7.3"` | no | +| graphdb\_version | GraphDB version | `string` | `"10.7.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 |