Skip to content

Commit

Permalink
Merge pull request #80 from Ontotext-AD/bump-gdb-version
Browse files Browse the repository at this point in the history
Bumped GraphDB version to 10.7.0
  • Loading branch information
viktor-ribchev authored Jul 8, 2024
2 parents f350bcf + 1b2cc1a commit e689f77
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* Made cluster-related userdata scripts executable only when `node_count` is greater than 1.
* Added new userdata script `10_start_single_graphdb_services.sh.tpl` for single node setup.
* Moved some functions to `00_functions.sh` so they are reused instead of duplicated in the userdata scripts.
* Updated GraphDB version to [10.7.0](https://graphdb.ontotext.com/documentation/10.7/release-notes.html)

## 1.1.1

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ versions. The next table shows the version compatability between GraphDB and the
| GraphDB Terraform | GraphDB |
|-------------------|----------------|
| Version 1.x.x | Version 10.6.x |
| Version 1.2.x | Version 10.7.x |

You can track the particular version updates of GraphDB in the [changelog](CHANGELOG.md) or
the [release notes](https://github.com/Ontotext-AD/terraform-azure-graphdb/releases).
Expand Down Expand Up @@ -149,7 +150,7 @@ az vm image terms accept --offer graphdb-ee --plan graphdb-byol --publisher onto
| app\_config\_enable\_purge\_protection | Prevents purging the App Configuration and its keys by soft deleting it. It will be deleted once the soft delete retention has passed. | `bool` | `true` | no |
| app\_config\_soft\_delete\_retention\_days | Retention period in days during which soft deleted keys are kept | `number` | `7` | no |
| admin\_security\_principle\_id | UUID of a user or service principle that will become data owner or administrator for specific resources that need permissions to insert data during Terraform apply, i.e. KeyVault and AppConfig. If left unspecified, the current user will be used. | `string` | `null` | no |
| graphdb\_version | GraphDB version from the marketplace offer | `string` | `"10.6.4"` | no |
| graphdb\_version | GraphDB version from the marketplace offer | `string` | `"10.7.0"` | no |
| graphdb\_sku | GraphDB SKU from the marketplace offer | `string` | `"graphdb-byol"` | no |
| graphdb\_image\_id | GraphDB image ID to use for the scale set VM instances in place of the default marketplace offer | `string` | `null` | no |
| graphdb\_license\_path | Local path to a file, containing a GraphDB Enterprise license. | `string` | n/a | yes |
Expand Down Expand Up @@ -197,7 +198,7 @@ To use the GraphDB module, create a new Terraform project or add to an existing
```hcl
module "graphdb" {
source = "Ontotext-AD/graphdb/azure"
version = "1.0.0"
version = "~> 1.0"
resource_name_prefix = "graphdb"
location = "East US"
Expand Down Expand Up @@ -253,7 +254,7 @@ graphdb_cluster_secret = "V6'vj|G]fpQ1_^9_,AE(r}Ct9yKuF&"
**GraphDB Configurations**

The GraphDB instances can be customized either by providing a custom `graphdb.properties` file that could contain any of the
supported [GraphDB configurations properties](https://graphdb.ontotext.com/documentation/10.6/directories-and-config-properties.html#configuration):
supported [GraphDB configurations properties](https://graphdb.ontotext.com/documentation/10.7/directories-and-config-properties.html#configuration):

```hcl
graphdb_properties_path = "<path_to_custom_graphdb_properties_file>"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ variable "admin_security_principle_id" {
variable "graphdb_version" {
description = "GraphDB version from the marketplace offer"
type = string
default = "10.6.4"
default = "10.7.0"
}

variable "graphdb_sku" {
Expand Down

0 comments on commit e689f77

Please sign in to comment.