rut-test-ops/vars.tf

26 lines
478 B
Terraform
Raw Normal View History

variable "worker_instance_count" {
default = "6"
}
variable "controller_instance_count" {
default = "3"
}
variable "controller_instance_type" {
default = "b2.c2r4"
}
2024-04-23 11:45:22 +00:00
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"
}