-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
41 lines (35 loc) · 872 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
variable "cluster_name" {
description = "Cluster name"
type = string
default = "mgc-cluster"
}
variable "kubernetes_version" {
description = "Kubernetes version"
type = string
default = "v1.30.2"
}
variable "cluster_description" {
description = "Cluster description"
type = string
default = "A Kubernetes cluster managed by Magalu Cloud."
}
variable "nodepool_name" {
description = "Nodepool name"
type = string
default = "mgc-nodepool"
}
variable "nodepool_replicas" {
description = "Number of nodepool replicas"
type = number
default = 1
}
variable "nodepool_flavor_name" {
description = "Nodepool flavor"
type = string
default = "cloud-k8s.gp1.small"
}
variable "timer_duration" {
description = "Timer duration"
type = string
default = "15m"
}