mirror of https://github.com/databricks/cli.git
28 lines
603 B
Go
28 lines
603 B
Go
package phases
|
|
|
|
import (
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/deploy/files"
|
|
"github.com/databricks/cli/bundle/deploy/lock"
|
|
"github.com/databricks/cli/bundle/deploy/terraform"
|
|
)
|
|
|
|
// The destroy phase deletes artifacts and resources.
|
|
func Destroy() bundle.Mutator {
|
|
destroyPhase := bundle.Defer([]bundle.Mutator{
|
|
lock.Acquire(),
|
|
terraform.StatePull(),
|
|
terraform.Plan(terraform.PlanGoal("destroy")),
|
|
terraform.Destroy(),
|
|
terraform.StatePush(),
|
|
files.Delete(),
|
|
}, []bundle.Mutator{
|
|
lock.Release(),
|
|
})
|
|
|
|
return newPhase(
|
|
"destroy",
|
|
destroyPhase,
|
|
)
|
|
}
|