0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-09-20 01:42:45 +02:00
wp-opentofu/main.go

101 lines
1.8 KiB
Go
Raw Normal View History

2015-11-09 20:23:42 +01:00
package main
import (
"fmt"
"os"
"os/exec"
"strings"
"github.com/drone/drone-plugin-go/plugin"
)
type terraform struct {
Remote remote `json:"remote"`
DryRun bool `json:"dryRun"`
Vars map[string]string `json:"vars"`
}
type remote struct {
Backend string `json:"backend"`
Config map[string]string `json:"config"`
2015-11-09 20:23:42 +01:00
}
func main() {
workspace := plugin.Workspace{}
vargs := terraform{}
2015-11-09 20:23:42 +01:00
plugin.Param("workspace", &workspace)
plugin.Param("vargs", &vargs)
plugin.MustParse()
var commands []*exec.Cmd
remote := vargs.Remote
if remote.Backend != "" {
commands = append(commands, remoteConfigCommand(remote))
}
commands = append(commands, planCommand(vargs.Vars))
if vargs.DryRun {
commands = append(commands, applyCommand())
2015-11-09 20:23:42 +01:00
}
for _, c := range commands {
c.Env = os.Environ()
c.Dir = workspace.Path
c.Stdout = os.Stdout
c.Stderr = os.Stderr
trace(c)
2015-11-09 20:23:42 +01:00
err := c.Run()
2015-11-09 20:23:42 +01:00
if err != nil {
2015-11-10 14:56:18 +01:00
fmt.Println("Error!")
fmt.Println(err)
2015-11-09 20:23:42 +01:00
os.Exit(1)
}
2015-11-10 14:56:18 +01:00
fmt.Println("Command completed successfully")
2015-11-09 20:23:42 +01:00
}
}
func remoteConfigCommand(config remote) *exec.Cmd {
args := []string{
"remote",
"config",
fmt.Sprintf("-backend=%s", config.Backend),
}
for k, v := range config.Config {
args = append(args, fmt.Sprintf("-backend-config=%s=%s", k, v))
}
return exec.Command(
"terraform",
args...,
)
}
func planCommand(variables map[string]string) *exec.Cmd {
args := []string{
"plan",
"-out=plan.tfout",
}
for k, v := range variables {
args = append(args, "-var")
args = append(args, fmt.Sprintf("%s=%s", k, v))
}
return exec.Command(
"terraform",
args...,
)
}
func applyCommand() *exec.Cmd {
return exec.Command(
"terraform",
"apply",
"plan.tfout",
)
2015-11-09 20:23:42 +01:00
}
func trace(cmd *exec.Cmd) {
fmt.Println("$", strings.Join(cmd.Args, " "))
}