Skip to content
Snippets Groups Projects
vars.tf 1.2 KiB
Newer Older
variable "ip_pool" {
  type        = string
  description = "The name of the public IP pool for the servers"
}

variable "net_name" {
  type        = string
  description = "The name of the IPv4 network"
}

variable "net6_name" {
  type        = string
  description = "The name of the IPv6 network"
}

variable "site_name" {
  type        = string
  description = "Site identifier for internal host names"
}

variable "master_cpus" {
  type        = number
  description = "Number of CPUs for the master"
}

variable "master_ram" {
  type        = number
  description = "RAM for the master"
}

variable "worker_cpus" {
  type        = number
  description = "Number of CPUs for the worker"
}

variable "worker_ram" {
  type        = number
  description = "RAM for the worker"
}

variable "extra_workers" {
  type        = number
  description = "Number of extra workers to create"
}

variable "docker_volumes_size" {
  type        = number
  description = "Size of volumes for docker (GB)"
}

variable "nfs_volume_size" {
  type        = number
  description = "Size of volume for NFS server (GB)"
}

variable "squid_volume_size" {
  type        = number
  description = "Size of volume for squid proxy, CVMFS cache (GB)"
}