mirror of https://github.com/databricks/cli.git
26 lines
593 B
Go
26 lines
593 B
Go
package phases
|
|
|
|
import (
|
|
"github.com/databricks/bricks/bundle"
|
|
"github.com/databricks/bricks/bundle/deploy/files"
|
|
"github.com/databricks/bricks/bundle/deploy/lock"
|
|
"github.com/databricks/bricks/bundle/deploy/terraform"
|
|
)
|
|
|
|
// The destroy phase deletes artifacts and resources.
|
|
func Destroy() bundle.Mutator {
|
|
return newPhase(
|
|
"destroy",
|
|
[]bundle.Mutator{
|
|
lock.Acquire(),
|
|
terraform.StatePull(),
|
|
terraform.Plan(terraform.PlanDestroy),
|
|
terraform.ShowPlan(),
|
|
terraform.Apply(terraform.ApplyDestroy),
|
|
terraform.StatePush(),
|
|
lock.Release(),
|
|
files.Delete(),
|
|
},
|
|
)
|
|
}
|