Skip to content

Commit 6e05021

Browse files
authored
fix incorrect use of partition in nodegroup variable definitions (#771)
1 parent 275da83 commit 6e05021

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

environments/site/tofu/node_group/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
variable "nodes" {
22
type = list(string)
3-
description = "list of node names for partition"
3+
description = "List of node names for node group"
44
}
55

66
variable "flavor" {
77
type = string
8-
description = "Name of flavor for partition"
8+
description = "Name of flavor for node group"
99
}
1010

1111
variable "cluster_name" {
@@ -24,7 +24,7 @@ variable "key_pair" {
2424

2525
variable "image_id" {
2626
type = string
27-
description = "ID of image for the partition"
27+
description = "ID of image for the node group"
2828
}
2929

3030
variable "environment_root" {

0 commit comments

Comments
 (0)