This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
tf-modules/debian/variables.tf
Pim Kunis e77d62f4a2 remove data share initialization
set hypervisor host default to empty string
2023-07-22 12:08:18 +02:00

89 lines
1.2 KiB
HCL

variable "name" {
type = string
}
variable "domain_name" {
type = string
default = null
}
variable "admin_authorized_keys" {
type = list(string)
default = null
}
variable "insecure_password" {
type = bool
default = false
}
variable "use_host_cert" {
type = bool
default = true
}
variable "disk_pool" {
type = string
default = null
}
variable "disk_base" {
type = string
default = null
}
variable "disk_base_pool" {
type = string
default = null
}
variable "cloudinit_pool" {
type = string
default = null
}
variable "bridge_name" {
type = string
default = null
}
variable "memory" {
type = number
default = 1024
}
variable "fixed_address" {
type = string
default = ""
}
variable "mac" {
type = string
default = null
}
variable "fixed_dns" {
type = string
default = ""
}
variable "disk_size" {
type = number
default = 1024 * 1024 * 1024 * 25
}
variable "ca_key" {
type = string
default = "dmz_host"
}
variable "data_share" {
type = string
default = ""
}
variable "data_disk" {
type = string
default = ""
description = "Identifier of the machine's persistent data disk."
}