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
2023-04-08 18:44:46 +02:00

66 lines
814 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
}
variable "fixed_address" {
type = string
default = ""
}