command: -out flag to plan command
This commit is contained in:
parent
6b765328c2
commit
f820290862
|
@ -3,6 +3,7 @@ package command
|
||||||
import (
|
import (
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
@ -20,10 +21,11 @@ type PlanCommand struct {
|
||||||
|
|
||||||
func (c *PlanCommand) Run(args []string) int {
|
func (c *PlanCommand) Run(args []string) int {
|
||||||
var refresh bool
|
var refresh bool
|
||||||
var statePath string
|
var outPath, statePath string
|
||||||
|
|
||||||
cmdFlags := flag.NewFlagSet("plan", flag.ContinueOnError)
|
cmdFlags := flag.NewFlagSet("plan", flag.ContinueOnError)
|
||||||
cmdFlags.BoolVar(&refresh, "refresh", true, "refresh")
|
cmdFlags.BoolVar(&refresh, "refresh", true, "refresh")
|
||||||
|
cmdFlags.StringVar(&outPath, "out", "", "path")
|
||||||
cmdFlags.StringVar(&statePath, "state", "", "path")
|
cmdFlags.StringVar(&statePath, "state", "", "path")
|
||||||
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
|
||||||
if err := cmdFlags.Parse(args); err != nil {
|
if err := cmdFlags.Parse(args); err != nil {
|
||||||
|
@ -85,8 +87,22 @@ func (c *PlanCommand) Run(args []string) int {
|
||||||
|
|
||||||
if plan.Diff.Empty() {
|
if plan.Diff.Empty() {
|
||||||
c.Ui.Output("No changes. Infrastructure is up-to-date.")
|
c.Ui.Output("No changes. Infrastructure is up-to-date.")
|
||||||
} else {
|
return 0
|
||||||
c.Ui.Output(strings.TrimSpace(plan.String()))
|
}
|
||||||
|
|
||||||
|
c.Ui.Output(strings.TrimSpace(plan.String()))
|
||||||
|
|
||||||
|
if outPath != "" {
|
||||||
|
log.Printf("[INFO] Writing plan output to: %s", outPath)
|
||||||
|
f, err := os.Create(outPath)
|
||||||
|
if err == nil {
|
||||||
|
defer f.Close()
|
||||||
|
err = terraform.WritePlan(plan, f)
|
||||||
|
}
|
||||||
|
if err != nil {
|
||||||
|
c.Ui.Error(fmt.Sprintf("Error writing plan file: %s", err))
|
||||||
|
return 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
@ -101,6 +117,9 @@ Usage: terraform plan [options] [terraform.tf]
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
|
|
||||||
|
-out=path Write a plan file to the given path. This can be used as
|
||||||
|
input to the "apply" command.
|
||||||
|
|
||||||
-refresh=true Update state prior to checking for differences.
|
-refresh=true Update state prior to checking for differences.
|
||||||
|
|
||||||
-state=statefile Path to a Terraform state file to use to look
|
-state=statefile Path to a Terraform state file to use to look
|
||||||
|
|
|
@ -39,6 +39,44 @@ func TestPlan_noState(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestPlan_outPath(t *testing.T) {
|
||||||
|
tf, err := ioutil.TempFile("", "tf")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
outPath := tf.Name()
|
||||||
|
os.Remove(tf.Name())
|
||||||
|
|
||||||
|
p := testProvider()
|
||||||
|
ui := new(cli.MockUi)
|
||||||
|
c := &PlanCommand{
|
||||||
|
TFConfig: testTFConfig(p),
|
||||||
|
Ui: ui,
|
||||||
|
}
|
||||||
|
|
||||||
|
p.DiffReturn = &terraform.ResourceDiff{
|
||||||
|
Destroy: true,
|
||||||
|
}
|
||||||
|
|
||||||
|
args := []string{
|
||||||
|
"-out", outPath,
|
||||||
|
testFixturePath("plan"),
|
||||||
|
}
|
||||||
|
if code := c.Run(args); code != 0 {
|
||||||
|
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
f, err := os.Open(outPath)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
if _, err := terraform.ReadPlan(f); err != nil {
|
||||||
|
t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestPlan_refresh(t *testing.T) {
|
func TestPlan_refresh(t *testing.T) {
|
||||||
p := testProvider()
|
p := testProvider()
|
||||||
ui := new(cli.MockUi)
|
ui := new(cli.MockUi)
|
||||||
|
|
Loading…
Reference in New Issue