pulumi/cmd/destroy.go
joeduffy e091bde692 Add a plan command; move env destroy to just destroy
This change adds a `coco plan` command which is simply a shortcut
to the more verbose `coco deploy --dry-run`.  This will make demos
flow nicer and elevates planning, an important activity, to a more
prominent position.  The `--dry-run` (aka `-n`) flag is still there.

This change also renames `coco env destroy` to just `coco destroy`.
This is consistent with deploy and plan being at the top-level.  We
now use `coco env` purely for evironment management commands (init,
config, rm, etc).
2017-03-15 15:40:06 -07:00

54 lines
1.6 KiB
Go

// Copyright 2017 Pulumi, Inc. All rights reserved.
package cmd
import (
"github.com/spf13/cobra"
)
func newDestroyCmd() *cobra.Command {
var dryRun bool
var summary bool
var yes bool
var cmd = &cobra.Command{
Use: "destroy <env>",
Short: "Destroy an existing environment and its resources",
Long: "Destroy an existing environment and its resources\n" +
"\n" +
"This command deletes an entire existing environment by name. The current state is\n" +
"loaded from the associated snapshot file in the workspace. After running to completion,\n" +
"all of this environment's resources and associated state will be gone.\n" +
"\n" +
"Warning: although old snapshots can be used to recreate an environment, this command\n" +
"is generally irreversable and should be used with great care.",
Run: runFunc(func(cmd *cobra.Command, args []string) error {
info, err := initEnvCmd(cmd, args)
if err != nil {
return err
}
defer info.Close()
if dryRun || yes ||
confirmPrompt("This will permanently destroy all resources in the '%v' environment!", info.Env.Name) {
apply(cmd, info, applyOptions{
Delete: true,
DryRun: dryRun,
Summary: summary,
})
}
return nil
}),
}
cmd.PersistentFlags().BoolVarP(
&dryRun, "dry-run", "n", false,
"Don't actually delete resources; just print out the planned deletions")
cmd.PersistentFlags().BoolVarP(
&summary, "summary", "s", false,
"Only display summarization of resources and plan operations")
cmd.PersistentFlags().BoolVar(
&yes, "yes", false,
"Skip confirmation prompts, and proceed with the destruction anyway")
return cmd
}