diff --git a/cli/cmd/verify.go b/cli/cmd/verify.go index db49068a1..bdd149d58 100644 --- a/cli/cmd/verify.go +++ b/cli/cmd/verify.go @@ -168,7 +168,7 @@ func newCoordinatorValidateOptsGen(hostData []byte) *snp.StaticValidateOptsGener }, PermitProvisionalFirmware: true, TrustedIDKeyHashes: trustedIDKeyDigests, - RequireIDBlock: true, + RequireIDBlock: false, // TODO(malt3): re-enable once we control the full boot (including the id block) }, } } diff --git a/coordinator/mesh.go b/coordinator/mesh.go index 333ca9608..feb0501dd 100644 --- a/coordinator/mesh.go +++ b/coordinator/mesh.go @@ -73,7 +73,7 @@ func (m *meshAuthority) SNPValidateOpts(report *sevsnp.Report) (*validate.Option }, PermitProvisionalFirmware: true, TrustedIDKeyHashes: trustedIDKeyDigestHashes, - RequireIDBlock: true, + RequireIDBlock: false, // TODO(malt3): re-enable once we control the full boot (including the id block) }, nil }