Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# GraphDB AWS Terraform Module Changelog

## 3.3.2

* Updated GraphDB default version to [11.4.2](https://graphdb.ontotext.com/documentation/11.4/release-notes.html#graphdb-11-4-2)

## 3.3.1

* Updated GraphDB default version to [11.4.1](https://graphdb.ontotext.com/documentation/11.4/release-notes.html#graphdb-11-4-1)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Before you begin using this Terraform module, ensure you meet the following prer
| tgw\_enable\_propagation | Whether to enable propagation of this attachment into tgw\_route\_table\_id. | `bool` | `null` | 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` | `"11.4.1"` | no |
| graphdb\_version | GraphDB version | `string` | `"11.4.2"` | 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 |
Expand Down Expand Up @@ -392,7 +392,7 @@ Note: The options mention above will be appended to the ones set in the user dat
**Customize GraphDB Version**

```hcl
graphdb_version = "11.4.1"
graphdb_version = "11.4.2"
```

**Purge Protection**
Expand Down Expand Up @@ -971,7 +971,7 @@ app_name = "graphdb"
# ============================================
# GraphDB Configuration
# ============================================
graphdb_version = "11.4.1"
graphdb_version = "11.4.2"
graphdb_node_count = 3
ec2_instance_type = "r6i.2xlarge"
graphdb_admin_password = "your-secure-password" # Use secrets manager in production
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ variable "ami_id" {
variable "graphdb_version" {
description = "GraphDB version"
type = string
default = "11.4.1"
default = "11.4.2"
nullable = false
}

Expand Down