pulumi/pkg/engine/env_info.go
Matt Ellis 5ae02ad581 Remove use of ambient stdout/stderr streams
Instead of talking directly to stdout or stderr via methods on fmt,
indirect through an Engine type (presently a global, but soon to
change) to allow control of where the streams actually end up.
2017-08-24 18:00:46 -07:00

49 lines
1.7 KiB
Go

package engine
import (
"fmt"
"github.com/pkg/errors"
)
func EnvInfo(showIDs bool, showURNs bool) error {
curr := getCurrentEnv()
if curr == "" {
return errors.New("no current environment; either `lumi env init` or `lumi env select` one")
}
fmt.Fprintf(E.Stdout, "Current environment is %v\n", curr)
fmt.Fprintf(E.Stdout, " (use `lumi env select` to change environments; `lumi env ls` lists known ones)\n")
target, snapshot, checkpoint := readEnv(curr)
if checkpoint == nil {
return errors.Errorf("could not read environment information")
}
if checkpoint.Latest != nil {
fmt.Fprintf(E.Stdout, "Last deployment at %v\n", checkpoint.Latest.Time)
if checkpoint.Latest.Info != nil {
fmt.Fprintf(E.Stdout, "Additional deployment info: %v\n", checkpoint.Latest.Info)
}
}
if target.Config != nil && len(target.Config) > 0 {
fmt.Fprintf(E.Stdout, "%v configuration variables set (see `lumi config` for details)\n", len(target.Config))
}
if snapshot == nil || len(snapshot.Resources) == 0 {
fmt.Fprintf(E.Stdout, "No resources currently in this environment\n")
} else {
fmt.Fprintf(E.Stdout, "%v resources currently in this environment:\n", len(snapshot.Resources))
fmt.Fprintf(E.Stdout, "\n")
fmt.Fprintf(E.Stdout, "%-48s %s\n", "TYPE", "NAME")
for _, res := range snapshot.Resources {
fmt.Fprintf(E.Stdout, "%-48s %s\n", res.Type(), res.URN().Name())
// If the ID and/or URN is requested, show it on the following line. It would be nice to do this
// on a single line, but they can get quite lengthy and so this formatting makes more sense.
if showIDs {
fmt.Fprintf(E.Stdout, "\tID: %s\n", res.ID)
}
if showURNs {
fmt.Fprintf(E.Stdout, "\tURN: %s\n", res.URN())
}
}
}
return nil
}