databricks-cli/libs/terraform/plan.go

20 lines
513 B
Go
Raw Normal View History

package terraform
type Plan struct {
// Path to the plan
Path string
// Holds whether the user can consented to destruction. Either by interactive
// confirmation or by passing a command line flag
ConfirmApply bool
// If true, the plan is empty and applying it will not do anything
IsEmpty bool
// If true, there are one or more resources in plan that will be re-created
IsReplacingResource bool
// if true, there are one or more resources in plan that will be destroyed
IsDeletingResource bool
}