From 34c344e641bc61c80880c2c6741180449094ee92 Mon Sep 17 00:00:00 2001 From: Steve Brasier Date: Thu, 4 Sep 2025 16:08:40 +0000 Subject: [PATCH] fix incorrect use of partition in nodegroup variable definitions --- environments/site/tofu/node_group/variables.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/environments/site/tofu/node_group/variables.tf b/environments/site/tofu/node_group/variables.tf index 35c1b6bac..4ef3407d9 100644 --- a/environments/site/tofu/node_group/variables.tf +++ b/environments/site/tofu/node_group/variables.tf @@ -1,11 +1,11 @@ variable "nodes" { type = list(string) - description = "list of node names for partition" + description = "List of node names for node group" } variable "flavor" { type = string - description = "Name of flavor for partition" + description = "Name of flavor for node group" } variable "cluster_name" { @@ -24,7 +24,7 @@ variable "key_pair" { variable "image_id" { type = string - description = "ID of image for the partition" + description = "ID of image for the node group" } variable "environment_root" {