diff --git a/data/data/gcp/main.tf b/data/data/gcp/main.tf index e2da2abdf4b..99e94a93c5d 100644 --- a/data/data/gcp/main.tf +++ b/data/data/gcp/main.tf @@ -93,6 +93,14 @@ module "dns" { resource "google_compute_image" "cluster" { name = "${var.cluster_id}-rhcos-image" + # See https://github.com/openshift/installer/issues/2546 + guest_os_features { + type = "SECURE_BOOT" + } + guest_os_features { + type = "UEFI_COMPATIBLE" + } + raw_disk { source = var.gcp_image_uri }