From 08c9902f29a5c1ae78fd26181ce1e5bedbbe5771 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Wed, 6 Oct 2021 18:42:01 -0700 Subject: [PATCH] Add new alias in the kms package. --- kms/kms.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kms/kms.go b/kms/kms.go index 3eddca93..e1b76f1a 100644 --- a/kms/kms.go +++ b/kms/kms.go @@ -18,6 +18,9 @@ type KeyManager = apiv1.KeyManager // store x509.Certificates. type CertificateManager = apiv1.CertificateManager +// Options are the KMS options. They represent the kms object in the ca.json. +type Options = apiv1.Options + // New initializes a new KMS from the given type. func New(ctx context.Context, opts apiv1.Options) (KeyManager, error) { if err := opts.Validate(); err != nil {