diff --git a/README.md b/README.md index 5d7e8f51..d63c9246 100644 --- a/README.md +++ b/README.md @@ -502,7 +502,7 @@ proxy_url = VALUE | [vnets\_to\_peer\_to\_deployment\_vnet](#input\_vnets\_to\_peer\_to\_deployment\_vnet) | List of vent-name:resource-group-name to peer |
list(object({
vnet = string
rg = string
}))
| `[]` | no | | [weka\_home\_url](#input\_weka\_home\_url) | Weka Home url | `string` | `""` | no | | [weka\_tar\_storage\_account\_id](#input\_weka\_tar\_storage\_account\_id) | ### private blob | `string` | `""` | no | -| [weka\_version](#input\_weka\_version) | The Weka version to deploy. | `string` | `"4.2.12"` | no | +| [weka\_version](#input\_weka\_version) | The Weka version to deploy. | `string` | `"4.2.11"` | no | | [zone](#input\_zone) | The zone in which the resources should be created. | `string` | `null` | no | ## Outputs diff --git a/examples/existing_private_network/main.tf b/examples/existing_private_network/main.tf index b575b9eb..98e5952c 100644 --- a/examples/existing_private_network/main.tf +++ b/examples/existing_private_network/main.tf @@ -14,7 +14,7 @@ module "weka_deployment" { vnet_name = "vnet-name" vnet_rg_name = "vnet-rg-name" sg_id = "/subscriptions/../resourceGroups/../providers/Microsoft.Network/networkSecurityGroups/.." - install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.12.tar?" + install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.11.tar?" assign_public_ip = false cluster_size = 6 tiering_enable_obs_integration = true diff --git a/examples/existing_private_network_with_peering/main.tf b/examples/existing_private_network_with_peering/main.tf index 98cc7699..937c8eba 100644 --- a/examples/existing_private_network_with_peering/main.tf +++ b/examples/existing_private_network_with_peering/main.tf @@ -11,7 +11,7 @@ module "weka_deployment" { rg_name = "weka-rg" assign_public_ip = false apt_repo_server = "http://11.0.0.4/ubuntu/mirror/archive.ubuntu.com/ubuntu/" - install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.12.tar?" + install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.11.tar?" vnet_rg_name = "weka-rg" vnet_name = "weka-vnet" subnet_name = "weka-subnet" diff --git a/variables.tf b/variables.tf index 9c1b2093..3a49be17 100644 --- a/variables.tf +++ b/variables.tf @@ -129,7 +129,7 @@ variable "logic_app_identity_name" { variable "weka_version" { type = string description = "The Weka version to deploy." - default = "4.2.12" + default = "4.2.11" } variable "get_weka_io_token" {