From 4a566490198898cfd970b29d1ff9d0b2a62ab512 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Tue, 16 Aug 2022 18:07:10 -0700 Subject: [PATCH] Create alias kms.Type --- kms/kms.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kms/kms.go b/kms/kms.go index 6511e6a7..a1cd7583 100644 --- a/kms/kms.go +++ b/kms/kms.go @@ -20,6 +20,9 @@ type CertificateManager = apiv1.CertificateManager // Options are the KMS options. They represent the kms object in the ca.json. type Options = apiv1.Options +// Type represents the KMS type used. +type Type = apiv1.Type + // Default is the implementation of the default KMS. var Default = &softkms.SoftKMS{}