terraform/command/command.go

61 lines
1.4 KiB
Go
Raw Normal View History

2014-07-01 19:02:13 +02:00
package command
import (
"fmt"
"github.com/hashicorp/terraform/terraform"
2014-07-03 22:12:45 +02:00
"github.com/mitchellh/cli"
2014-07-01 19:02:13 +02:00
)
2014-09-29 20:24:16 +02:00
// Set to true when we're testing
var test bool = false
// DefaultDataDir is the default directory for storing local data.
const DefaultDataDir = ".terraform"
2014-07-12 06:03:56 +02:00
// DefaultStateFilename is the default filename used for the state file.
const DefaultStateFilename = "terraform.tfstate"
// DefaultVarsFilename is the default filename used for vars
const DefaultVarsFilename = "terraform.tfvars"
2014-07-28 00:09:04 +02:00
// DefaultBackupExtention is added to the state file to form the path
const DefaultBackupExtention = ".backup"
// DefaultDataDirectory is the directory where local state is stored
// by default.
const DefaultDataDirectory = ".terraform"
2014-07-03 22:12:45 +02:00
func validateContext(ctx *terraform.Context, ui cli.Ui) bool {
if ws, es := ctx.Validate(); len(ws) > 0 || len(es) > 0 {
ui.Output(
"There are warnings and/or errors related to your configuration. Please\n" +
"fix these before continuing.\n")
if len(ws) > 0 {
ui.Warn("Warnings:\n")
2014-07-03 22:12:45 +02:00
for _, w := range ws {
ui.Warn(fmt.Sprintf(" * %s", w))
2014-07-03 22:12:45 +02:00
}
if len(es) > 0 {
ui.Output("")
}
}
if len(es) > 0 {
ui.Error("Errors:\n")
2014-07-03 22:12:45 +02:00
for _, e := range es {
ui.Error(fmt.Sprintf(" * %s", e))
2014-07-03 22:12:45 +02:00
}
return false
} else {
ui.Warn(fmt.Sprintf("\n"+
"No errors found. Continuing with %d warning(s).\n", len(ws)))
return true
2014-07-03 22:12:45 +02:00
}
}
return true
}