From f0fda5badac891e03c499eeaa9e640dfa9f3abd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20Hern=C3=A1ndez?= Date: Fri, 31 May 2024 15:19:04 +0200 Subject: [PATCH] fix PR --- locals.tf | 1 - variables.tf | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/locals.tf b/locals.tf index b8d73eb9..9d89fdf1 100644 --- a/locals.tf +++ b/locals.tf @@ -6,7 +6,6 @@ locals { # TFE Architecture # ---------------- - active_active = var.vm_node_count >= 2 || var.operational_mode == "active-active" disk_mode = var.operational_mode == "disk" # Network diff --git a/variables.tf b/variables.tf index d2a883f5..d3ca8c72 100644 --- a/variables.tf +++ b/variables.tf @@ -921,7 +921,7 @@ variable "operational_mode" { validation { condition = contains(["external", "disk", "active-active", null], var.operational_mode) - error_message = "The production_type must be 'external', 'disk', `active-active` or omitted." + error_message = "The operational_mode must be 'external', 'disk', `active-active` or omitted." } }