open-vault/command/delete.go

68 lines
1.5 KiB
Go
Raw Normal View History

2015-04-07 18:15:20 +00:00
package command
import (
"fmt"
"strings"
2016-04-01 17:16:05 +00:00
"github.com/hashicorp/vault/meta"
2015-04-07 18:15:20 +00:00
)
// DeleteCommand is a Command that puts data into the Vault.
type DeleteCommand struct {
2016-04-01 17:16:05 +00:00
meta.Meta
2015-04-07 18:15:20 +00:00
}
func (c *DeleteCommand) Run(args []string) int {
2016-04-01 17:16:05 +00:00
flags := c.Meta.FlagSet("delete", meta.FlagSetDefault)
2015-04-07 18:15:20 +00:00
flags.Usage = func() { c.Ui.Error(c.Help()) }
if err := flags.Parse(args); err != nil {
return 1
}
args = flags.Args()
if len(args) != 1 {
c.Ui.Error("delete expects one argument")
flags.Usage()
return 1
}
path := args[0]
client, err := c.Client()
if err != nil {
c.Ui.Error(fmt.Sprintf(
"Error initializing client: %s", err))
return 2
}
if _, err := client.Logical().Delete(path); err != nil {
c.Ui.Error(fmt.Sprintf(
"Error deleting '%s': %s", path, err))
return 1
}
c.Ui.Output(fmt.Sprintf("Success! Deleted '%s' if it existed.", path))
2015-04-07 18:15:20 +00:00
return 0
}
func (c *DeleteCommand) Synopsis() string {
return "Delete operation on secrets in Vault"
}
func (c *DeleteCommand) Help() string {
helpText := `
Usage: vault delete [options] path
Delete data (secrets or configuration) from Vault.
Delete sends a delete operation request to the given path. The
behavior of the delete is determined by the backend at the given
path. For example, deleting "aws/policy/ops" will delete the "ops"
policy for the AWS backend. Use "vault help" for more details on
whether delete is supported for a path and what the behavior is.
General Options:
` + meta.GeneralOptionsUsage()
2015-04-07 18:15:20 +00:00
return strings.TrimSpace(helpText)
}