Add machine variable to terraform module (#179)

* add variable machine to enable/disable secure boot

* add role description
This commit is contained in:
leongross 2022-05-30 10:29:34 +02:00 committed by GitHub
parent b84d8add73
commit 15e668d09b
5 changed files with 18 additions and 2 deletions

View file

@ -38,3 +38,10 @@ variable "ip_range_start" {
default = 100
description = "first ip address to use within subnet"
}
variable "machine" {
type = string
default = "q35"
description = "machine type. use 'q35' for secure boot and 'pc' for non secure boot. See 'qemu-system-x86_64 -machine help'"
}