Skip to content

Commit

Permalink
update default graphdb version to 10.7.1
Browse files Browse the repository at this point in the history
* update graphdb to the latest release
* change default EC2 instance type to r6i.2xlarge
  • Loading branch information
yaskoo committed Jul 22, 2024
1 parent 66d7911 commit 851c4f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
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 851c4f1

Please sign in to comment.