0
0
mirror of https://github.com/thegeeklab/wp-opentofu.git synced 2024-11-21 14:20:40 +00:00

Remove forcing a call on plan with apply or destroy actions

This commit is contained in:
Jacob McCann 2018-02-14 10:16:14 -06:00
parent 77bd39b3ef
commit feef3866df

View File

@ -85,10 +85,8 @@ func (p Plugin) Exec() error {
case "plan-destroy":
commands = append(commands, tfPlan(p.Config, true))
case "apply":
commands = append(commands, tfPlan(p.Config, false))
commands = append(commands, tfApply(p.Config))
case "destroy":
commands = append(commands, tfPlan(p.Config, true))
commands = append(commands, tfDestroy(p.Config))
default:
return fmt.Errorf("valid actions are: validate, plan, apply, plan-destroy, destroy. You provided %s", action)