26 lines
478 B
HCL
26 lines
478 B
HCL
variable "worker_instance_count" {
|
|
default = "6"
|
|
}
|
|
variable "controller_instance_count" {
|
|
default = "3"
|
|
}
|
|
|
|
variable "controller_instance_type" {
|
|
default = "b2.c2r4"
|
|
}
|
|
variable "monitor_instance_type" {
|
|
default = "b2.c2r4"
|
|
}
|
|
variable "worker_instance_type" {
|
|
default = "b2.c4r16"
|
|
}
|
|
variable "worker_name" {
|
|
default = "internal-sto4-test-k8sw"
|
|
}
|
|
variable "controller_name" {
|
|
default = "internal-sto4-test-k8sc"
|
|
}
|
|
variable "dns_suffix" {
|
|
default = "rut.sunet.se"
|
|
}
|