mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-09 18:00:40 +00:00
182 lines
3.8 KiB
Go
182 lines
3.8 KiB
Go
package plugin
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"golang.org/x/sys/execabs"
|
|
)
|
|
|
|
const (
|
|
tofuBin = "/usr/local/bin/tofu"
|
|
)
|
|
|
|
type pluginCommand struct {
|
|
cmd *execabs.Cmd
|
|
private bool
|
|
}
|
|
|
|
func (p *Plugin) versionCommand() *pluginCommand {
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, "version"),
|
|
false,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) initCommand() *pluginCommand {
|
|
args := []string{
|
|
"init",
|
|
}
|
|
|
|
for _, v := range p.Settings.InitOptions.BackendConfig {
|
|
args = append(args, fmt.Sprintf("-backend-config=%s", v))
|
|
}
|
|
|
|
// Fail tofu execution on prompt
|
|
args = append(args, "-input=false")
|
|
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, args...),
|
|
false,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) getModulesCommand() *pluginCommand {
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, "get"),
|
|
false,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) validateCommand() *pluginCommand {
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, "validate"),
|
|
false,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) fmtCommand() *pluginCommand {
|
|
args := []string{
|
|
"fmt",
|
|
}
|
|
|
|
if p.Settings.FmtOptions.List != nil {
|
|
args = append(args, fmt.Sprintf("-list=%t", *p.Settings.FmtOptions.List))
|
|
}
|
|
|
|
if p.Settings.FmtOptions.Write != nil {
|
|
args = append(args, fmt.Sprintf("-write=%t", *p.Settings.FmtOptions.Write))
|
|
}
|
|
|
|
if p.Settings.FmtOptions.Diff != nil {
|
|
args = append(args, fmt.Sprintf("-diff=%t", *p.Settings.FmtOptions.Diff))
|
|
}
|
|
|
|
if p.Settings.FmtOptions.Check != nil {
|
|
args = append(args, fmt.Sprintf("-check=%t", *p.Settings.FmtOptions.Check))
|
|
}
|
|
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, args...),
|
|
false,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) planCommand(destroy bool) *pluginCommand {
|
|
args := []string{
|
|
"plan",
|
|
}
|
|
|
|
if destroy {
|
|
args = append(args, "-destroy")
|
|
} else {
|
|
args = append(args, fmt.Sprintf("-out=%s", p.Settings.OutFile))
|
|
}
|
|
|
|
for _, value := range p.Settings.Targets.Value() {
|
|
args = append(args, "--target", value)
|
|
}
|
|
|
|
if p.Settings.Parallelism > 0 {
|
|
args = append(args, fmt.Sprintf("-parallelism=%d", p.Settings.Parallelism))
|
|
}
|
|
|
|
if p.Settings.InitOptions.Lock != nil {
|
|
args = append(args, fmt.Sprintf("-lock=%t", *p.Settings.InitOptions.Lock))
|
|
}
|
|
|
|
if p.Settings.InitOptions.LockTimeout != "" {
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", p.Settings.InitOptions.LockTimeout))
|
|
}
|
|
|
|
if !p.Settings.Refresh {
|
|
args = append(args, "-refresh=false")
|
|
}
|
|
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, args...),
|
|
p.Settings.NoLog,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) applyCommand() *pluginCommand {
|
|
args := []string{
|
|
"apply",
|
|
}
|
|
|
|
for _, v := range p.Settings.Targets.Value() {
|
|
args = append(args, "--target", v)
|
|
}
|
|
|
|
if p.Settings.Parallelism > 0 {
|
|
args = append(args, fmt.Sprintf("-parallelism=%d", p.Settings.Parallelism))
|
|
}
|
|
|
|
if p.Settings.InitOptions.Lock != nil {
|
|
args = append(args, fmt.Sprintf("-lock=%t", *p.Settings.InitOptions.Lock))
|
|
}
|
|
|
|
if p.Settings.InitOptions.LockTimeout != "" {
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", p.Settings.InitOptions.LockTimeout))
|
|
}
|
|
|
|
if !p.Settings.Refresh {
|
|
args = append(args, "-refresh=false")
|
|
}
|
|
|
|
args = append(args, p.Settings.OutFile)
|
|
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, args...),
|
|
p.Settings.NoLog,
|
|
}
|
|
}
|
|
|
|
func (p *Plugin) destroyCommand() *pluginCommand {
|
|
args := []string{
|
|
"destroy",
|
|
}
|
|
|
|
for _, v := range p.Settings.Targets.Value() {
|
|
args = append(args, fmt.Sprintf("-target=%s", v))
|
|
}
|
|
|
|
if p.Settings.Parallelism > 0 {
|
|
args = append(args, fmt.Sprintf("-parallelism=%d", p.Settings.Parallelism))
|
|
}
|
|
|
|
if p.Settings.InitOptions.Lock != nil {
|
|
args = append(args, fmt.Sprintf("-lock=%t", *p.Settings.InitOptions.Lock))
|
|
}
|
|
|
|
if p.Settings.InitOptions.LockTimeout != "" {
|
|
args = append(args, fmt.Sprintf("-lock-timeout=%s", p.Settings.InitOptions.LockTimeout))
|
|
}
|
|
|
|
args = append(args, "-auto-approve")
|
|
|
|
return &pluginCommand{
|
|
execabs.Command(tofuBin, args...),
|
|
p.Settings.NoLog,
|
|
}
|
|
}
|