pulumi/cmd/env_init.go
joeduffy 3d74eac67d Make major commands more pleasant
This change eliminates the need to constantly type in the environment
name when performing major commands like configuration, planning, and
deployment.  It's probably due to my age, however, I keep fat-fingering
simple commands in front of investors and I am embarrassed!

In the new model, there is a notion of a "current environment", and
I have modeled it kinda sorta just like Git's notion of "current branch."

By default, the current environment is set when you `init` something.
Otherwise, there is the `coco env select <env>` command to change it.
(Running this command w/out a new <env> will show you the current one.)

The major commands `config`, `plan`, `deploy`, and `destroy` will prefer
to use the current environment, unless it is overridden by using the
--env flag.  All of the `coco env <cmd> <env>` commands still require the
explicit passing of an environment which seems reasonable since they are,
after all, about manipulating environments.

As part of this, I've overhauled the aging workspace settings cruft,
which had fallen into disrepair since the initial prototype.
2017-03-21 19:23:32 -07:00

34 lines
916 B
Go

// Copyright 2017 Pulumi, Inc. All rights reserved.
package cmd
import (
"errors"
"github.com/spf13/cobra"
"github.com/pulumi/coconut/pkg/tokens"
)
func newEnvInitCmd() *cobra.Command {
return &cobra.Command{
Use: "init <env>",
Aliases: []string{"create"},
Short: "Create an empty environment with the given name, ready for deployments",
Long: "Create an empty environment with the given name, ready for deployments\n" +
"\n" +
"This command creates an empty environment with the given name. It has no resources,\n" +
"but afterwards it can become the target of a deployment using the `deploy` command.",
Run: runFunc(func(cmd *cobra.Command, args []string) error {
// Read in the name of the environment to use.
if len(args) == 0 {
return errors.New("missing required environment name")
}
name := tokens.QName(args[0])
createEnv(name)
return nil
}),
}
}