variable "datacenter_name" {
  type = string
  default = "dco"
}

variable "keyname" {
  type = string
  default = "manderssonpub"
}

variable "worker_instance_count" {
  default = "3"
}
variable "controller_instance_count" {
  default = "3"
}

variable "controller_instance_type" {
  default = "b2.c2r4"
}

variable "worker_instance_type" {
  default = "b2.c4r16"
}

variable "worker_name" {
  default = "k8sw"
}

variable "controller_name" {
  default = "k8sc"
}

variable "dns_suffix" {
  default = "matrix.test.sunet.se"
}

variable "cloud_name" {
  default="dco-matrixtest"
}