Add variable to contain size of cluster.

This commit is contained in:
Magnus Andersson 2024-01-11 15:37:36 +01:00
parent a7394b524a
commit d8cb4ffb06
Signed by: mandersson
GPG key ID: 19CB2C58E1F19B16

6
variables.tf Normal file
View file

@ -0,0 +1,6 @@
# Number of worker nodes in out kubernetes cluster.
variable "kubesize" {
type = number
default = 3
}