Move load of kms to main package.
With this change packages that import the authority won't load by default all the supported kms with all its dependencies. Fixes #228
This commit is contained in:
parent
0b528d2507
commit
ddb4ca7a74
3 changed files with 12 additions and 6 deletions
|
@ -23,6 +23,14 @@ import (
|
|||
"github.com/smallstep/cli/config"
|
||||
"github.com/smallstep/cli/usage"
|
||||
"github.com/urfave/cli"
|
||||
|
||||
// Enabled kms interfaces.
|
||||
_ "github.com/smallstep/certificates/kms/awskms"
|
||||
_ "github.com/smallstep/certificates/kms/cloudkms"
|
||||
_ "github.com/smallstep/certificates/kms/softkms"
|
||||
|
||||
// Experimental kms interfaces.
|
||||
_ "github.com/smallstep/certificates/kms/yubikey"
|
||||
)
|
||||
|
||||
// commit and buildTime are filled in during build by the Makefile
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue