diff --git a/cli/commands.go b/cli/commands.go index eefd8ff5d9..ca609ce37e 100644 --- a/cli/commands.go +++ b/cli/commands.go @@ -12,6 +12,7 @@ import ( "github.com/hashicorp/vault/builtin/logical/aws" "github.com/hashicorp/vault/builtin/logical/consul" + "github.com/hashicorp/vault/builtin/logical/mysql" "github.com/hashicorp/vault/builtin/logical/postgresql" "github.com/hashicorp/vault/builtin/logical/transit" @@ -61,6 +62,7 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory { "consul": consul.Factory, "postgresql": postgresql.Factory, "transit": transit.Factory, + "mysql": mysql.Factory, }, }, nil },