This repository has been archived on 2023-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
tf-debian-vm/variables.tf
2023-04-05 16:48:38 +02:00

36 lines
641 B
HCL

variable "name" {
type = string
}
variable "disk_size" {
type = number
default = 1024 * 1024 * 1024 * 15
}
variable "admin_authorized_keys" {
type = list(string)
default = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
]
}
variable "memory" {
type = number
default = 1024
}
variable "mac" {
type = string
default = null
}
variable "insecure_password" {
type = bool
default = false
}
variable "use_host_cert" {
type = bool
default = true
}