2017-02-17 00:29:19 +01:00
|
|
|
package command
|
|
|
|
|
2017-02-23 20:14:51 +01:00
|
|
|
import "strings"
|
2017-02-17 00:29:19 +01:00
|
|
|
|
|
|
|
// EnvCommand is a Command Implementation that manipulates local state
|
|
|
|
// environments.
|
|
|
|
type EnvCommand struct {
|
|
|
|
Meta
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvCommand) Run(args []string) int {
|
|
|
|
args = c.Meta.process(args, true)
|
|
|
|
|
|
|
|
cmdFlags := c.Meta.flagSet("env")
|
|
|
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
c.Ui.Output(c.Help())
|
2017-02-17 00:29:19 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvCommand) Help() string {
|
|
|
|
helpText := `
|
2017-02-23 19:13:28 +01:00
|
|
|
Usage: terraform env
|
2017-02-17 00:29:19 +01:00
|
|
|
|
|
|
|
Create, change and delete Terraform environments.
|
|
|
|
|
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
Subcommands:
|
2017-02-17 00:29:19 +01:00
|
|
|
|
2017-02-23 19:13:28 +01:00
|
|
|
list List environments.
|
|
|
|
select Select an environment.
|
|
|
|
new Create a new environment.
|
|
|
|
delete Delete an existing environment.
|
2017-02-17 00:29:19 +01:00
|
|
|
`
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EnvCommand) Synopsis() string {
|
|
|
|
return "Environment management"
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
envNotSupported = `Backend does not support environments`
|
|
|
|
|
|
|
|
envExists = `Environment %q already exists`
|
|
|
|
|
|
|
|
envDoesNotExist = `Environment %q doesn't exist!
|
|
|
|
You can create this environment with the "-new" option.`
|
|
|
|
|
|
|
|
envChanged = `[reset][green]Switched to environment %q!`
|
|
|
|
|
|
|
|
envCreated = `[reset][green]Created environment %q!`
|
|
|
|
|
|
|
|
envDeleted = `[reset][green]Deleted environment %q!`
|
|
|
|
|
|
|
|
envNotEmpty = `Environment %[1]q is not empty!
|
|
|
|
Deleting %[1]q can result in dangling resources: resources that
|
|
|
|
exist but are no longer manageable by Terraform. Please destroy
|
|
|
|
these resources first. If you want to delete this environment
|
|
|
|
anyways and risk dangling resources, use the '-force' flag.
|
|
|
|
`
|
|
|
|
|
|
|
|
envWarnNotEmpty = `[reset][yellow]WARNING: %q was non-empty.
|
|
|
|
The resources managed by the deleted environment may still exist,
|
|
|
|
but are no longer manageable by Terraform since the state has
|
|
|
|
been deleted.
|
|
|
|
`
|
|
|
|
)
|