2015-04-19 23:36:11 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
2016-04-01 17:16:05 +00:00
|
|
|
|
2017-09-05 04:03:04 +00:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
"github.com/posener/complete"
|
2015-04-19 23:36:11 +00:00
|
|
|
)
|
|
|
|
|
2017-09-05 04:03:04 +00:00
|
|
|
// Ensure we are implementing the right interfaces.
|
|
|
|
var _ cli.Command = (*PolicyDeleteCommand)(nil)
|
|
|
|
var _ cli.CommandAutocomplete = (*PolicyDeleteCommand)(nil)
|
|
|
|
|
2015-04-19 23:36:11 +00:00
|
|
|
// PolicyDeleteCommand is a Command that enables a new endpoint.
|
|
|
|
type PolicyDeleteCommand struct {
|
2017-09-05 04:03:04 +00:00
|
|
|
*BaseCommand
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) Synopsis() string {
|
|
|
|
return "Deletes a policy by name"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) Help() string {
|
|
|
|
helpText := `
|
|
|
|
Usage: vault policy-delete [options] NAME
|
|
|
|
|
|
|
|
Deletes a policy in the Vault server with the given name. Once the policy
|
|
|
|
is deleted, all tokens associated with the policy will be affected
|
|
|
|
immediately.
|
|
|
|
|
|
|
|
Delete the policy named "my-policy":
|
|
|
|
|
|
|
|
$ vault policy-delete my-policy
|
|
|
|
|
|
|
|
For a full list of examples, please see the documentation.
|
|
|
|
|
|
|
|
` + c.Flags().Help()
|
|
|
|
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) Flags() *FlagSets {
|
|
|
|
return c.flagSet(FlagSetHTTP)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) AutocompleteArgs() complete.Predictor {
|
|
|
|
return c.PredictVaultPolicies()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) AutocompleteFlags() complete.Flags {
|
|
|
|
return c.Flags().Completions()
|
2015-04-19 23:36:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *PolicyDeleteCommand) Run(args []string) int {
|
2017-09-05 04:03:04 +00:00
|
|
|
f := c.Flags()
|
|
|
|
|
|
|
|
if err := f.Parse(args); err != nil {
|
|
|
|
c.UI.Error(err.Error())
|
2015-04-19 23:36:11 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-09-05 04:03:04 +00:00
|
|
|
args = f.Args()
|
|
|
|
switch {
|
|
|
|
case len(args) < 1:
|
|
|
|
c.UI.Error(fmt.Sprintf("Not enough arguments (expected 1, got %d)", len(args)))
|
|
|
|
return 1
|
|
|
|
case len(args) > 1:
|
|
|
|
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
|
2015-04-19 23:36:11 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := c.Client()
|
|
|
|
if err != nil {
|
2017-09-05 04:03:04 +00:00
|
|
|
c.UI.Error(err.Error())
|
2015-04-19 23:36:11 +00:00
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
2017-09-05 04:03:04 +00:00
|
|
|
name := strings.TrimSpace(strings.ToLower(args[0]))
|
2015-04-19 23:36:11 +00:00
|
|
|
if err := client.Sys().DeletePolicy(name); err != nil {
|
2017-09-05 04:03:04 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error deleting %s: %s", name, err))
|
|
|
|
return 2
|
2015-04-19 23:36:11 +00:00
|
|
|
}
|
|
|
|
|
2017-09-05 04:03:04 +00:00
|
|
|
c.UI.Output(fmt.Sprintf("Success! Deleted policy: %s", name))
|
2015-04-19 23:36:11 +00:00
|
|
|
return 0
|
|
|
|
}
|