-
-
Notifications
You must be signed in to change notification settings - Fork 984
/
main.go
70 lines (55 loc) · 1.93 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package main
import (
"context"
"os"
"github.com/gruntwork-io/terragrunt/cli"
"github.com/gruntwork-io/terragrunt/cli/commands"
"github.com/gruntwork-io/terragrunt/internal/errors"
"github.com/gruntwork-io/terragrunt/options"
"github.com/gruntwork-io/terragrunt/pkg/log"
"github.com/gruntwork-io/terragrunt/shell"
"github.com/gruntwork-io/terragrunt/util"
)
// The main entrypoint for Terragrunt
func main() {
var exitCode shell.DetailedExitCode
ctx := context.Background()
ctx = shell.ContextWithDetailedExitCode(ctx, &exitCode)
opts := options.NewTerragruntOptions()
parseAndSetLogEnvs(opts)
defer errors.Recover(checkForErrorsAndExit(opts.Logger, exitCode.Get()))
app := cli.NewApp(opts)
err := app.RunContext(ctx, os.Args)
checkForErrorsAndExit(opts.Logger, exitCode.Get())(err)
}
// If there is an error, display it in the console and exit with a non-zero exit code. Otherwise, exit 0.
func checkForErrorsAndExit(logger log.Logger, exitCode int) func(error) {
return func(err error) {
if err == nil {
os.Exit(exitCode)
} else {
logger.Error(err.Error())
logger.Debug(errors.ErrorStack(err))
// exit with the underlying error code
exitCoder, exitCodeErr := util.GetExitCode(err)
if exitCodeErr != nil {
exitCoder = 1
logger.Errorf("Unable to determine underlying exit code, so Terragrunt will exit with error code 1")
}
if explain := shell.ExplainError(err); len(explain) > 0 {
logger.Errorf("Suggested fixes: \n%s", explain)
}
os.Exit(exitCoder)
}
}
}
func parseAndSetLogEnvs(opts *options.TerragruntOptions) {
if levelStr := os.Getenv(commands.TerragruntLogLevelEnvName); levelStr != "" {
level, err := log.ParseLevel(levelStr)
if err != nil {
err := errors.Errorf("Could not parse log level from environment variable %s=%s, %w", commands.TerragruntLogLevelEnvName, levelStr, err)
checkForErrorsAndExit(opts.Logger, 0)(err)
}
opts.Logger.SetOptions(log.WithLevel(level))
}
}