diff --git a/CHANGELOG.md b/CHANGELOG.md index c2176b4..37d9b0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.3 + +* Updated to GraphDB [10.8.0](https://graphdb.ontotext.com/documentation/10.8/release-notes.html#graphdb-10-8-0) + ## 0.1.2 * Updated to GraphDB [10.7.6](https://graphdb.ontotext.com/documentation/10.7/release-notes.html#graphdb-10-7-6) diff --git a/README.md b/README.md index 869f563..8c9cd3c 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ versions. The next table shows the version compatability between GraphDB, and th | GraphDB Terraform | GraphDB | |--------------------------------------------------------------------------------|--------------------------------------------------------------------------------------| -| [Version 0.0.1](https://github.com/Ontotext-AD/terraform-gcp-graphdb/releases) | [Version 10.7.x](https://graphdb.ontotext.com/documentation/10.7/release-notes.html) | +| [Version 0.0.1](https://github.com/Ontotext-AD/terraform-gcp-graphdb/releases) | [Version 10.8.x](https://graphdb.ontotext.com/documentation/10.7/release-notes.html) | You can track the particular version updates of GraphDB in the [changelog](CHANGELOG.md). @@ -73,7 +73,7 @@ Before you begin using this Terraform module, ensure you meet the following prer | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| -| source\_image | Defines the VM image passed from the GCP Marketplace | `string` | `"projects/graphdb-public/global/images/ontotext-graphdb-10-7-6-202410151959"` | no | +| source\_image | Defines the VM image passed from the GCP Marketplace | `string` | `"projects/graphdb-public/global/images/ontotext-graphdb-10-8-0-202411131143"` | no | | goog\_cm\_deployment\_name | Deployment name | `string` | `"graphdb"` | no | | project\_id | Project in which the VM will be created | `string` | n/a | yes | | zone | The zone where the VM will be created | `string` | `"us-central1-a"` | no | diff --git a/metadata.yaml b/metadata.yaml index 205c99c..3d0ac75 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -51,7 +51,7 @@ spec: - name: source_image description: Defines the VM image passed from the GCP Marketplace varType: string - defaultValue: projects/graphdb-public/global/images/ontotext-graphdb-10-7-6-202410151959 + defaultValue: projects/graphdb-public/global/images/ontotext-graphdb-10-8-0-202411131143 - name: zone description: The zone where the VM will be created varType: string diff --git a/variables.tf b/variables.tf index 925897f..0eb943c 100644 --- a/variables.tf +++ b/variables.tf @@ -5,7 +5,7 @@ variable "source_image" { type = string # Set the default value to your image. Marketplace will overwrite this value # to a Marketplace owned image on publishing the product - default = "projects/graphdb-public/global/images/ontotext-graphdb-10-7-6-202410151959" + default = "projects/graphdb-public/global/images/ontotext-graphdb-10-8-0-202411131143" } variable "goog_cm_deployment_name" {