From 9daf07176b20bf2f11e88bb55c0d2a750b70941c Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Sat, 25 Apr 2015 12:06:08 -0700 Subject: [PATCH] commands: enable the mysql secret backend --- cli/commands.go | 2 ++ 1 file changed, 2 insertions(+) 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 },