0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-06-02 18:39:41 +02:00
wp-opentofu/main.go

185 lines
5.0 KiB
Go
Raw Normal View History

2015-11-09 20:23:42 +01:00
package main
import (
2016-10-08 17:34:43 +02:00
"encoding/json"
2015-11-09 20:23:42 +01:00
"os"
2016-10-08 17:34:43 +02:00
"github.com/Sirupsen/logrus"
2019-11-26 21:52:36 +01:00
"github.com/joho/godotenv"
2016-10-08 17:34:43 +02:00
"github.com/urfave/cli"
)
2016-10-09 07:08:37 +02:00
var revision string // build number set at compile-time
2015-11-09 20:23:42 +01:00
func main() {
2016-10-08 17:34:43 +02:00
app := cli.NewApp()
app.Name = "terraform plugin"
app.Usage = "terraform plugin"
app.Action = run
2016-10-09 07:08:37 +02:00
app.Version = revision
2016-10-08 17:34:43 +02:00
app.Flags = []cli.Flag{
//
// plugin args
//
2018-02-14 16:39:20 +01:00
cli.StringSliceFlag{
Name: "actions",
Usage: "a list of actions to have terraform perform",
EnvVar: "PLUGIN_ACTIONS",
2018-02-14 17:47:32 +01:00
Value: &cli.StringSlice{"validate", "plan", "apply"},
2016-10-08 17:34:43 +02:00
},
cli.StringFlag{
2018-02-14 16:39:20 +01:00
Name: "ca_cert",
Usage: "ca cert to add to your environment to allow terraform to use internal/private resources",
EnvVar: "PLUGIN_CA_CERT",
2016-10-08 17:34:43 +02:00
},
cli.StringFlag{
Name: "env_file",
Usage: "pass filename to source it and load variables into current shell",
EnvVar: "PLUGIN_ENV_FILE",
2016-10-08 17:34:43 +02:00
},
cli.StringFlag{
2018-02-14 16:39:20 +01:00
Name: "init_options",
Usage: "options for the init command. See https://www.terraform.io/docs/commands/init.html",
EnvVar: "PLUGIN_INIT_OPTIONS",
2016-10-08 17:34:43 +02:00
},
2019-02-04 18:21:54 +01:00
cli.StringFlag{
Name: "fmt_options",
Usage: "options for the fmt command. See https://www.terraform.io/docs/commands/fmt.html",
EnvVar: "PLUGIN_FMT_OPTIONS",
},
2018-02-14 16:39:20 +01:00
cli.IntFlag{
Name: "parallelism",
Usage: "The number of concurrent operations as Terraform walks its graph",
EnvVar: "PLUGIN_PARALLELISM",
2016-10-08 17:34:43 +02:00
},
2018-04-06 13:37:39 +02:00
cli.StringFlag{
Name: "netrc.machine",
Usage: "netrc machine",
EnvVar: "DRONE_NETRC_MACHINE",
},
cli.StringFlag{
Name: "netrc.username",
Usage: "netrc username",
EnvVar: "DRONE_NETRC_USERNAME",
},
cli.StringFlag{
Name: "netrc.password",
Usage: "netrc password",
EnvVar: "DRONE_NETRC_PASSWORD",
},
2016-10-08 17:34:43 +02:00
cli.StringFlag{
Name: "role_arn_to_assume",
Usage: "A role to assume before running the terraform commands",
2016-10-08 17:34:43 +02:00
EnvVar: "PLUGIN_ROLE_ARN_TO_ASSUME",
},
cli.StringFlag{
Name: "root_dir",
Usage: "The root directory where the terraform files live. When unset, the top level directory will be assumed",
2016-10-08 17:34:43 +02:00
EnvVar: "PLUGIN_ROOT_DIR",
},
cli.StringFlag{
2018-02-14 16:39:20 +01:00
Name: "secrets",
Usage: "a map of secrets to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `<key>=<ENV>` option",
EnvVar: "PLUGIN_SECRETS",
},
cli.BoolFlag{
Name: "sensitive",
Usage: "whether or not to suppress terraform commands to stdout",
EnvVar: "PLUGIN_SENSITIVE",
2016-10-08 17:34:43 +02:00
},
cli.StringSliceFlag{
Name: "targets",
Usage: "targets to run apply or plan on",
EnvVar: "PLUGIN_TARGETS",
},
cli.StringFlag{
Name: "tf.version",
Usage: "terraform version to use",
EnvVar: "PLUGIN_TF_VERSION",
},
2018-02-14 16:39:20 +01:00
cli.StringFlag{
Name: "vars",
Usage: "a map of variables to pass to the Terraform `plan` and `apply` commands. Each value is passed as a `<key>=<value>` option",
EnvVar: "PLUGIN_VARS",
},
2018-02-14 16:35:07 +01:00
cli.StringSliceFlag{
2018-02-14 16:39:20 +01:00
Name: "var_files",
Usage: "a list of var files to use. Each value is passed as -var-file=<value>",
EnvVar: "PLUGIN_VAR_FILES",
2018-02-14 16:35:07 +01:00
},
cli.StringFlag{
Name: "tf_data_dir",
Usage: "changes the location where Terraform keeps its per-working-directory data, such as the current remote backend configuration",
EnvVar: "PLUGIN_TF_DATA_DIR",
},
2020-08-14 22:43:44 +02:00
cli.BoolFlag{
Name: "disable_refresh",
Usage: "whether or not to disable refreshing state before `plan` and `apply` commands",
EnvVar: "PLUGIN_DISABLE_REFRESH",
},
}
2016-10-08 17:34:43 +02:00
if err := app.Run(os.Args); err != nil {
logrus.Fatal(err)
}
2016-02-09 20:27:12 +01:00
}
2016-10-08 17:34:43 +02:00
func run(c *cli.Context) error {
2016-10-09 07:08:37 +02:00
logrus.WithFields(logrus.Fields{
"Revision": revision,
}).Info("Drone Terraform Plugin Version")
2019-11-26 21:52:36 +01:00
if c.String("env_file") != "" {
_ = godotenv.Load(c.String("env_file"))
}
2016-10-08 17:34:43 +02:00
var vars map[string]string
if c.String("vars") != "" {
if err := json.Unmarshal([]byte(c.String("vars")), &vars); err != nil {
2016-10-20 15:46:56 +02:00
panic(err)
}
}
2016-10-08 17:34:43 +02:00
var secrets map[string]string
if c.String("secrets") != "" {
if err := json.Unmarshal([]byte(c.String("secrets")), &secrets); err != nil {
2016-10-20 15:46:56 +02:00
panic(err)
}
}
2015-11-09 20:23:42 +01:00
2017-05-08 17:40:14 +02:00
initOptions := InitOptions{}
json.Unmarshal([]byte(c.String("init_options")), &initOptions)
2019-02-04 18:21:54 +01:00
fmtOptions := FmtOptions{}
json.Unmarshal([]byte(c.String("fmt_options")), &fmtOptions)
2017-05-08 17:40:14 +02:00
2016-10-08 17:34:43 +02:00
plugin := Plugin{
Config: Config{
Actions: c.StringSlice("actions"),
Vars: vars,
Secrets: secrets,
InitOptions: initOptions,
FmtOptions: fmtOptions,
Cacert: c.String("ca_cert"),
Sensitive: c.Bool("sensitive"),
RoleARN: c.String("role_arn_to_assume"),
RootDir: c.String("root_dir"),
Parallelism: c.Int("parallelism"),
Targets: c.StringSlice("targets"),
VarFiles: c.StringSlice("var_files"),
TerraformDataDir: c.String("tf_data_dir"),
2020-08-14 22:43:44 +02:00
DisableRefresh: c.Bool("disable_refresh"),
2016-10-08 17:34:43 +02:00
},
2018-04-06 13:37:39 +02:00
Netrc: Netrc{
Login: c.String("netrc.username"),
Machine: c.String("netrc.machine"),
Password: c.String("netrc.password"),
},
Terraform: Terraform{
Version: c.String("tf.version"),
},
}
2016-10-08 17:34:43 +02:00
return plugin.Exec()
2015-11-09 20:23:42 +01:00
}