From 4173e5d76836d115fb06a17d0c5924044e5e6e5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Ravier?= Date: Thu, 27 Jul 2023 10:00:51 +0200 Subject: [PATCH] internal/cloud/gcp/compute: Add SEV_SNP_CAPABLE Guest OS Feature See: https://github.com/coreos/coreos-assembler/pull/3547 See: https://cloud.google.com/blog/products/identity-security/rsa-snp-vm-more-confidential See: https://issues.redhat.com/browse/COS-2343 --- internal/cloud/gcp/compute.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/cloud/gcp/compute.go b/internal/cloud/gcp/compute.go index 9aef1f7685..165ea08339 100644 --- a/internal/cloud/gcp/compute.go +++ b/internal/cloud/gcp/compute.go @@ -27,6 +27,7 @@ var GuestOsFeaturesRHEL9 []*computepb.GuestOsFeature = []*computepb.GuestOsFeatu {Type: common.ToPtr(computepb.GuestOsFeature_VIRTIO_SCSI_MULTIQUEUE.String())}, {Type: common.ToPtr(computepb.GuestOsFeature_SEV_CAPABLE.String())}, {Type: common.ToPtr(computepb.GuestOsFeature_GVNIC.String())}, + {Type: common.ToPtr(computepb.GuestOsFeature_SEV_SNP_CAPABLE.String())}, } // GuestOsFeaturesByDistro returns the the list of Guest OS Features, which