forked from zapier/tfbuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
root.go
103 lines (84 loc) · 2.63 KB
/
root.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package cmd
import (
"context"
"fmt"
"log"
"os"
"strconv"
"strings"
"github.com/rs/zerolog"
"github.com/spf13/cobra"
"github.com/zapier/tfbuddy/internal/logging"
"github.com/zapier/tfbuddy/internal/telemetry"
"github.com/zapier/tfbuddy/pkg"
"github.com/spf13/viper"
)
var cfgFile string
var logLevel string
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "tfbuddy",
Short: "Various utilties to aid Terraform CI pipelines & Terraform Cloud runs",
Long: ``,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
logging.SetupLogOutput(resolveLogLevel())
},
}
func resolveLogLevel() zerolog.Level {
logLevelEnv := os.Getenv("TFBUDDY_LOG_LEVEL")
if logLevelEnv != "" {
logLevel = logLevelEnv
}
lvl, err := zerolog.ParseLevel(logLevel)
if err != nil {
log.Println("could not parse log level, defaulting to 'info'")
lvl = zerolog.InfoLevel
}
return lvl
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
cobra.CheckErr(rootCmd.Execute())
}
func init() {
cobra.OnInitialize(initConfig)
rootCmd.PersistentFlags().StringVarP(&logLevel, "log-level", "v", "info", "Set the log output level (info, debug, trace)")
}
func initTelemetry(ctx context.Context) (*telemetry.OperatorTelemetry, error) {
enableOtel, _ := strconv.ParseBool(os.Getenv("TFBUDDY_OTEL_ENABLED"))
otelHost := os.Getenv("TFBUDDY_OTEL_COLLECTOR_HOST")
otelPort := os.Getenv("TFBUDDY_OTEL_COLLECTOR_PORT")
opts := telemetry.Options{
Enabled: enableOtel,
Host: otelHost,
Port: otelPort,
Version: pkg.GitTag,
CommitSHA: pkg.GitCommit,
}
log.Printf("enabled: %v\thost: %s\tport: %s\n", enableOtel, otelHost, otelPort)
log.Printf("OpenTelemetry Opts: %+v\n", opts)
return telemetry.Init(ctx, "tfbuddy", opts)
}
// initConfig reads in config file and ENV variables if set.
func initConfig() {
if cfgFile != "" {
// Use config file from the flag.
viper.SetConfigFile(cfgFile)
} else {
// Find home directory.
home, err := os.UserHomeDir()
cobra.CheckErr(err)
// Search config in home directory with name ".tfbuddy" (without extension).
viper.AddConfigPath(home)
viper.SetConfigType("yaml")
viper.SetConfigName(".tfbuddy")
}
viper.SetEnvPrefix("TFBUDDY")
viper.EnvKeyReplacer(strings.NewReplacer("-", "_"))
viper.AutomaticEnv() // read in environment variables that match
// If a config file is found, read it in.
if err := viper.ReadInConfig(); err == nil {
fmt.Fprintln(os.Stderr, "Using config file:", viper.ConfigFileUsed())
}
}