48 lines
630 B
HCL
48 lines
630 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "admin_authorized_keys" {
|
|
type = list(string)
|
|
default = null
|
|
}
|
|
|
|
variable "insecure_password" {
|
|
type = bool
|
|
default = null
|
|
}
|
|
|
|
variable "use_host_cert" {
|
|
type = bool
|
|
default = null
|
|
}
|
|
|
|
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 "ca_host" {
|
|
type = string
|
|
default = null
|
|
}
|