51 lines
853 B
HCL
51 lines
853 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "admin_authorized_keys" {
|
|
type = list(string)
|
|
default = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
|
]
|
|
}
|
|
|
|
variable "insecure_password" {
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "use_host_cert" {
|
|
type = bool
|
|
default = true
|
|
}
|
|
|
|
variable "disk_pool" {
|
|
type = string
|
|
default = "disk"
|
|
}
|
|
|
|
variable "disk_base" {
|
|
type = string
|
|
default = "debian-bookworm.qcow2"
|
|
}
|
|
|
|
variable "disk_base_pool" {
|
|
type = string
|
|
default = "iso"
|
|
}
|
|
|
|
variable "cloudinit_pool" {
|
|
type = string
|
|
default = "init"
|
|
}
|
|
|
|
variable "bridge_name" {
|
|
type = string
|
|
default = "dmzbr"
|
|
}
|
|
|
|
variable "ca_host" {
|
|
type = string
|
|
default = "hermes.dmz"
|
|
}
|