changed the cluster name to manual

This commit is contained in:
Karim Naufal
2022-03-09 05:19:06 +01:00
parent cf15aef059
commit f20ac7c8d5
7 changed files with 19 additions and 19 deletions

View File

@@ -127,10 +127,15 @@ variable "use_cluster_name_in_node_name" {
description = "Whether to use the cluster name in the node name"
}
variable "cluster_prefix" {
variable "cluster_name" {
type = string
default = "k3s"
description = "Prefix for the cluster name"
description = "Name of the cluster"
validation {
condition = can(regex("^[a-z1-9\\-]+$", var.cluster_name))
error_message = "The cluster name must be in the form of lowercase alphanumeric characters and/or dashes."
}
}
variable "traefik_additional_options" {