terraform: disable secure boot for QEMU / MiniConstellation

This commit is contained in:
Malte Poll 2023-09-18 12:18:22 +02:00 committed by Malte Poll
parent 3543fe140e
commit 4e2b9745bb
4 changed files with 5 additions and 5 deletions

View file

@ -14,7 +14,7 @@
<xsl:copy>
<!--<xsl:apply-templates select="node()|@*"/>-->
<xsl:attribute name="secure">
<xsl:value-of select="'yes'"/>
<xsl:value-of select="'no'"/>
</xsl:attribute>
<xsl:attribute name="readonly">
<xsl:value-of select="'yes'"/>

View file

@ -68,7 +68,7 @@ variable "image_format" {
variable "firmware" {
type = string
default = "/usr/share/OVMF/OVMF_CODE.secboot.fd"
description = "path to UEFI firmware file. Use \"OVMF_CODE_4M.ms.fd\" on Ubuntu and \"OVMF_CODE.secboot.fd\" on Fedora."
description = "path to UEFI firmware file. Use \"OVMF_CODE_4M.ms.fd\" on Ubuntu and \"OVMF_CODE.fd\" or \"OVMF_CODE.secboot.fd\" on Fedora."
}
variable "nvram" {