This repository has been archived on 2023-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
tf-debian-vm/variables.tf
Pim Kunis 8b6c42e1c5 format and partition data disk
support only one data disk for now
2023-04-07 17:42:54 +02:00

61 lines
747 B
HCL

variable "name" {
type = string
}
variable "disk_size" {
type = number
default = 1024 * 1024 * 1024 * 15
}
variable "admin_authorized_keys" {
type = list(string)
}
variable "memory" {
type = number
default = 1024
}
variable "mac" {
type = string
default = null
}
variable "insecure_password" {
type = bool
default = false
}
variable "use_host_cert" {
type = bool
default = false
}
variable "disk_pool" {
type = string
}
variable "disk_base" {
type = string
}
variable "disk_base_pool" {
type = string
}
variable "cloudinit_pool" {
type = string
}
variable "bridge_name" {
type = string
}
variable "ca_host" {
type = string
}
variable "data_disk" {
type = string
default = null
}