remove some variable defaults
This commit is contained in:
parent
20199a65f4
commit
fa4ff8fcf3
1 changed files with 5 additions and 15 deletions
20
variables.tf
20
variables.tf
|
@ -9,10 +9,6 @@ variable "disk_size" {
|
||||||
|
|
||||||
variable "admin_authorized_keys" {
|
variable "admin_authorized_keys" {
|
||||||
type = list(string)
|
type = list(string)
|
||||||
default = [
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
|
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "memory" {
|
variable "memory" {
|
||||||
|
@ -32,35 +28,29 @@ variable "insecure_password" {
|
||||||
|
|
||||||
variable "use_host_cert" {
|
variable "use_host_cert" {
|
||||||
type = bool
|
type = bool
|
||||||
default = true
|
default = false
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "disk_pool" {
|
variable "disk_pool" {
|
||||||
type = string
|
type = string
|
||||||
default = "disk"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "disk_base" {
|
variable "disk_base" {
|
||||||
type = string
|
type = string
|
||||||
default = "debian-bookworm.qcow2"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "disk_base_pool" {
|
variable "disk_base_pool" {
|
||||||
type = string
|
type = string
|
||||||
default = "iso"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "cloudinit_pool" {
|
variable "cloudinit_pool" {
|
||||||
type = string
|
type = string
|
||||||
default = "init"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "bridge_name" {
|
variable "bridge_name" {
|
||||||
type = string
|
type = string
|
||||||
default = "dmzbr"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "ca_host" {
|
variable "ca_host" {
|
||||||
type = string
|
type = string
|
||||||
default = "hermes.dmz"
|
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue