Skip to content

Commit

Permalink
Merge pull request #62 from Ontotext-AD/update_graphdb_version_10.7.1
Browse files Browse the repository at this point in the history
update default graphdb version to 10.7.1
  • Loading branch information
yaskoo authored Jul 22, 2024
2 parents 66d7911 + 5853ced commit 1832c49
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
* Added `graphdb.external-url.enforce.transactions=true`
* Removed calculation of `lb_tls_enabled` in the LB module as it is calculated in the main.tf
* Removed `monitoring_route53_healtcheck_fqdn_url` in favor of `graphdb_external_dns`.
* 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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Before you begin using this Terraform module, ensure you meet the following prer
| lb\_tls\_policy | TLS security policy on the listener. | `string` | `"ELBSecurityPolicy-TLS13-1-2-2021-06"` | no |
| allowed\_inbound\_cidrs\_lb | (Optional) List of CIDR blocks to permit inbound traffic from to load balancer | `list(string)` | `null` | no |
| allowed\_inbound\_cidrs\_ssh | (Optional) List of CIDR blocks to permit for SSH to GraphDB nodes | `list(string)` | `null` | no |
| ec2\_instance\_type | EC2 instance type | `string` | `"r6g.2xlarge"` | no |
| ec2\_instance\_type | EC2 instance type | `string` | `"r6i.2xlarge"` | no |
| ec2\_key\_name | (Optional) key pair to use for SSH access to instance | `string` | `null` | no |
| graphdb\_node\_count | Number of GraphDB nodes to deploy in ASG | `number` | `3` | no |
| vpc\_dns\_hostnames | Enable or disable DNS hostnames support for the VPC | `bool` | `true` | no |
Expand All @@ -123,7 +123,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.0"` | no |
| graphdb\_version | GraphDB version | `string` | `"10.7.1"` | 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 @@ -281,7 +281,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.0"
graphdb_version = "10.7.1"
```

**Purge Protection**
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ variable "allowed_inbound_cidrs_ssh" {
variable "ec2_instance_type" {
description = "EC2 instance type"
type = string
default = "r6g.2xlarge"
default = "r6i.2xlarge"
nullable = false
}

Expand Down Expand Up @@ -229,7 +229,7 @@ variable "ami_id" {
variable "graphdb_version" {
description = "GraphDB version"
type = string
default = "10.7.0"
default = "10.7.1"
nullable = false
}

Expand Down

0 comments on commit 1832c49

Please sign in to comment.