From 1a06be0e4a8234a7cda5225b0f6b29702e8f6383 Mon Sep 17 00:00:00 2001 From: Daniel Vincze Date: Wed, 22 Mar 2023 14:09:01 +0200 Subject: [PATCH] Add `secure_boot` field to VM Export Information Adds a field that will tell whether the exported machine has UEFI Secure Boot enabled or not. --- coriolis/schemas/vm_export_info_schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/coriolis/schemas/vm_export_info_schema.json b/coriolis/schemas/vm_export_info_schema.json index dbd16936d..47a5691a1 100644 --- a/coriolis/schemas/vm_export_info_schema.json +++ b/coriolis/schemas/vm_export_info_schema.json @@ -57,6 +57,10 @@ "description": "The type of firmware of the VM.", "enum": ["BIOS", "EFI"] }, + "secure_boot": { + "type": "boolean", + "description": "Whether the machine has UEFI Secure Boot enabled or not." + }, "nested_virtualization": { "type": "boolean", "description": "Indicates whether or not nested hardware accelerated virtualization is possible on the VM."