From 8793c0f8afba6146eb90603cdc219c0b7411d9a3 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sat, 7 May 2022 09:28:27 -0400 Subject: [PATCH] sget: Enable KMS providers for sget (#1852) Signed-off-by: Jason Hall --- cmd/sget/main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/cmd/sget/main.go b/cmd/sget/main.go index fda3f678ea6..7651d5cf6e0 100644 --- a/cmd/sget/main.go +++ b/cmd/sget/main.go @@ -22,6 +22,12 @@ import ( "strings" "github.com/sigstore/cosign/cmd/sget/cli" + + // Register the provider-specific plugins + _ "github.com/sigstore/sigstore/pkg/signature/kms/aws" + _ "github.com/sigstore/sigstore/pkg/signature/kms/azure" + _ "github.com/sigstore/sigstore/pkg/signature/kms/gcp" + _ "github.com/sigstore/sigstore/pkg/signature/kms/hashivault" ) func main() {