remove some variable defaults
This commit is contained in:
parent
20199a65f4
commit
fa4ff8fcf3
1 changed files with 5 additions and 15 deletions
12
variables.tf
12
variables.tf
|
@ -9,10 +9,6 @@ variable "disk_size" {
|
|||
|
||||
variable "admin_authorized_keys" {
|
||||
type = list(string)
|
||||
default = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
||||
]
|
||||
}
|
||||
|
||||
variable "memory" {
|
||||
|
@ -32,35 +28,29 @@ variable "insecure_password" {
|
|||
|
||||
variable "use_host_cert" {
|
||||
type = bool
|
||||
default = true
|
||||
default = false
|
||||
}
|
||||
|
||||
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"
|
||||
}
|
||||
|
|
Reference in a new issue