From c9e5aca0a8fb0a362b83c2ba44da9749c8b068cf Mon Sep 17 00:00:00 2001 From: Michele Pagot Date: Mon, 16 Sep 2024 22:16:15 +0200 Subject: [PATCH] Change wrong DRBD name usage. --- terraform/aws/modules/drbd_node/variables.tf | 2 +- terraform/azure/modules/drbd_node/variables.tf | 4 ++-- terraform/azure/modules/majority_maker_node/variables.tf | 2 +- terraform/azure/variables.tf | 6 ------ terraform/gcp/modules/drbd_node/variables.tf | 4 ++-- 5 files changed, 6 insertions(+), 12 deletions(-) diff --git a/terraform/aws/modules/drbd_node/variables.tf b/terraform/aws/modules/drbd_node/variables.tf index 180d91ce..250f6d78 100644 --- a/terraform/aws/modules/drbd_node/variables.tf +++ b/terraform/aws/modules/drbd_node/variables.tf @@ -14,7 +14,7 @@ variable "drbd_count" { } variable "vm_size" { - description = "The instance type of DRDB node" + description = "The instance type of DRBD node" type = string } diff --git a/terraform/azure/modules/drbd_node/variables.tf b/terraform/azure/modules/drbd_node/variables.tf index 68744a6f..d34fc8da 100644 --- a/terraform/azure/modules/drbd_node/variables.tf +++ b/terraform/azure/modules/drbd_node/variables.tf @@ -8,13 +8,13 @@ variable "name" { } variable "drbd_count" { - description = "Number of DRDB machines to deploy" + description = "Number of DRBD machines to deploy" type = number default = 2 } variable "vm_size" { - description = "The instance type of DRDB node" + description = "The instance type of DRBD node" type = string } diff --git a/terraform/azure/modules/majority_maker_node/variables.tf b/terraform/azure/modules/majority_maker_node/variables.tf index c7bcc019..d01b1148 100644 --- a/terraform/azure/modules/majority_maker_node/variables.tf +++ b/terraform/azure/modules/majority_maker_node/variables.tf @@ -12,7 +12,7 @@ variable "node_count" { } variable "vm_size" { - description = "The instance type of DRDB node" + description = "The instance type of DRBD node" type = string } diff --git a/terraform/azure/variables.tf b/terraform/azure/variables.tf index 7ba5eed1..d50889bb 100644 --- a/terraform/azure/variables.tf +++ b/terraform/azure/variables.tf @@ -592,12 +592,6 @@ variable "drbd_os_image" { default = "" } -variable "drdb_os_major_version" { - description = "The major OS version of SLES drdb VMs. If not set, this value will be computed. Example: 15" - type = string - default = "" -} - variable "drbd_image_uri" { description = "Path to a custom azure image in a storage account used to create the drbd machines" type = string diff --git a/terraform/gcp/modules/drbd_node/variables.tf b/terraform/gcp/modules/drbd_node/variables.tf index 112de441..54bd8be9 100644 --- a/terraform/gcp/modules/drbd_node/variables.tf +++ b/terraform/gcp/modules/drbd_node/variables.tf @@ -8,13 +8,13 @@ variable "name" { } variable "drbd_count" { - description = "Number of DRDB machines to deploy" + description = "Number of DRBD machines to deploy" type = number default = 2 } variable "vm_size" { - description = "The instance type of DRDB node" + description = "The instance type of DRBD node" type = string }