pulumi/cmd/stack_export.go
joeduffy bf51d7594a Refactor display logic out of pkg/backend/filestate
This simply refactors all the display logic out of the
pkg/backend/filestate package. This helps to gear us up to better unify
this logic between the filestate and httpstate backends.

Furthermore, this really ought to be in its own non-backend,
CLI-specific package, but I'm taking one step at a time here.
2018-09-05 07:33:18 -07:00

82 lines
2.4 KiB
Go

// Copyright 2016-2018, Pulumi Corporation.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cmd
import (
"encoding/json"
"os"
"github.com/pkg/errors"
"github.com/spf13/cobra"
"github.com/pulumi/pulumi/pkg/backend/display"
"github.com/pulumi/pulumi/pkg/util/cmdutil"
)
func newStackExportCmd() *cobra.Command {
var file string
var stackName string
cmd := &cobra.Command{
Use: "export",
Args: cmdutil.MaximumNArgs(0),
Short: "Export a stack's deployment to standard out",
Long: "Export a stack's deployment to standard out.\n" +
"\n" +
"The deployment can then be hand-edited and used to update the stack via\n" +
"`pulumi stack import`. This process may be used to correct inconsistencies\n" +
"in a stack's state due to failed deployments, manual changes to cloud\n" +
"resources, etc.",
Run: cmdutil.RunFunc(func(cmd *cobra.Command, args []string) error {
opts := display.Options{
Color: cmdutil.GetGlobalColorization(),
}
// Fetch the current stack and export its deployment
s, err := requireStack(stackName, false, opts, true /*setCurrent*/)
if err != nil {
return err
}
deployment, err := s.ExportDeployment(commandContext())
if err != nil {
return err
}
// Read from stdin or a specified file.
writer := os.Stdout
if file != "" {
writer, err = os.Create(file)
if err != nil {
return errors.Wrap(err, "could not open file")
}
}
// Write the deployment.
enc := json.NewEncoder(writer)
enc.SetIndent("", " ")
if err = enc.Encode(deployment); err != nil {
return errors.Wrap(err, "could not export deployment")
}
return nil
}),
}
cmd.PersistentFlags().StringVarP(
&stackName, "stack", "s", "", "The name of the stack to operate on. Defaults to the current stack")
cmd.PersistentFlags().StringVarP(
&file, "file", "", "", "A filename to write stack output to")
return cmd
}