Skip to content

Commit

Permalink
Merge pull request #68 from Ontotext-AD/update-version-10.6.3
Browse files Browse the repository at this point in the history
Updated GraphDB version to 10.6.3
  • Loading branch information
mihailradkov authored Apr 19, 2024
2 parents d9c44b1 + 775e512 commit ed0f2f5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# GraphDB Azure Terraform Module Changelog

## 1.0.1

Updated GraphDB version to [10.6.3](https://graphdb.ontotext.com/documentation/10.6/release-notes.html#graphdb-10-6-3)

## 1.0.0

First release of the official Terraform module for deploying GraphDB on Microsoft Azure.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ az vm image accept-terms --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.2"` | no |
| graphdb\_version | GraphDB version from the marketplace offer | `string` | `"10.6.3"` | 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
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ variable "admin_security_principle_id" {
variable "graphdb_version" {
description = "GraphDB version from the marketplace offer"
type = string
default = "10.6.2"
default = "10.6.3"
}

variable "graphdb_sku" {
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
terraform {
required_version = "~>1.7.4"
required_version = "~>1.7"

required_providers {
azurerm = {
Expand Down

0 comments on commit ed0f2f5

Please sign in to comment.