Skip to content

Commit

Permalink
fix PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Hernández committed May 31, 2024
1 parent 721ab75 commit f0fda5b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
}

Expand Down

0 comments on commit f0fda5b

Please sign in to comment.