Skip to content
variables.tf 507 B
Newer Older
variable "template_name" {}

variable "username" {}

variable "machines" {
  description = "Cluster machines"
  type = map(object({
    node_type       = string
    cpu             = string
    mem             = string
    disk_size       =  number
    additional_disks = map(object({
      size = number
      tier = string
    }))
  }))
}

variable "ssh_public_keys" {
  type = list(string)
}