Skip to content

Commit

Permalink
chore: update default weka version 4.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
assafgi committed Jan 4, 2024
1 parent e46092d commit ea5f018
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/existing_private_network/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.90.tar?<SAS_TOKEN>"
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.7.tar?<SAS_TOKEN>"
assign_public_ip = false
cluster_size = 6
tiering_enable_obs_integration = true
Expand Down
2 changes: 1 addition & 1 deletion examples/existing_private_network_with_peering/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.90.tar?<SAS_TOKEN>"
install_weka_url = "https://wekatars.blob.core.windows.net/tars/weka-4.2.7.tar?<SAS_TOKEN>"
vnet_rg_name = "weka-rg"
vnet_name = "weka-vnet"
subnet_name = "weka-subnet"
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ variable "logic_app_subnet_delegation_cidr" {
variable "weka_version" {
type = string
description = "The Weka version to deploy."
default = "4.2.6.90"
default = "4.2.7"
}

variable "get_weka_io_token" {
Expand Down Expand Up @@ -327,7 +327,7 @@ variable "function_app_version" {
variable "function_app_dist" {
type = string
description = "Function app code dist"
default = "dev"
default = "release"

validation {
condition = contains(["dev", "release"], var.function_app_dist)
Expand Down

0 comments on commit ea5f018

Please sign in to comment.