mirror of
https://github.com/thegeeklab/wp-opentofu.git
synced 2024-11-22 00:30:40 +00:00
terraform get and gofmt
This commit is contained in:
parent
7cd59e25ea
commit
bb77afac6e
8
main.go
8
main.go
@ -56,6 +56,7 @@ func main() {
|
||||
commands = append(commands, deleteCache())
|
||||
commands = append(commands, remoteConfigCommand(remote))
|
||||
}
|
||||
commands = append(commands, getModules())
|
||||
commands = append(commands, planCommand(vargs.Vars))
|
||||
if !vargs.Plan {
|
||||
commands = append(commands, applyCommand())
|
||||
@ -115,6 +116,13 @@ func remoteConfigCommand(config remote) *exec.Cmd {
|
||||
)
|
||||
}
|
||||
|
||||
func getModules() *exec.Cmd {
|
||||
return exec.Command(
|
||||
"terraform",
|
||||
"get",
|
||||
)
|
||||
}
|
||||
|
||||
func planCommand(variables map[string]string) *exec.Cmd {
|
||||
args := []string{
|
||||
"plan",
|
||||
|
Loading…
Reference in New Issue
Block a user