Skip to content

Commit 915ff5f

Browse files
authored
Merge pull request #80 from Ontotext-AD/GDB-11747-gdb-10.8.4
Update GraphDB version to 10.8.4
2 parents a4010c7 + 5738156 commit 915ff5f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# GraphDB AWS Terraform Module Changelog
22

3+
## 1.3.4
4+
5+
* Update default GraphDB version to [10.8.4](https://graphdb.ontotext.com/documentation/10.8/release-notes.html#graphdb-10-8-4)
6+
37
## 1.3.3
48

59
* Update default GraphDB version to [10.8.3](https://graphdb.ontotext.com/documentation/10.8/release-notes.html#graphdb-10-8-3)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Before you begin using this Terraform module, ensure you meet the following prer
125125
| vpc\_flow\_logs\_expiration\_days | Define the days after which the VPC flow logs should be deleted | `number` | `7` | no |
126126
| lb\_enable\_private\_access | Enable or disable the private access via PrivateLink to the GraphDB Cluster | `bool` | `false` | no |
127127
| 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 |
128-
| graphdb\_version | GraphDB version | `string` | `"10.8.3"` | no |
128+
| graphdb\_version | GraphDB version | `string` | `"10.8.4"` | no |
129129
| device\_name | The device to which EBS volumes for the GraphDB data directory will be mapped. | `string` | `"/dev/sdf"` | no |
130130
| ebs\_volume\_type | Type of the EBS volumes, used by the GraphDB nodes. | `string` | `"gp3"` | no |
131131
| ebs\_volume\_size | The size of the EBS volumes, used by the GraphDB nodes. | `number` | `500` | no |

variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ variable "ami_id" {
229229
variable "graphdb_version" {
230230
description = "GraphDB version"
231231
type = string
232-
default = "10.8.3"
232+
default = "10.8.4"
233233
nullable = false
234234
}
235235

0 commit comments

Comments
 (0)