2023-04-06 10:54:58 +00:00
|
|
|
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
|
2023-04-19 13:14:26 +00:00
|
|
|
|
|
|
|
// 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
|
2023-04-06 10:54:58 +00:00
|
|
|
}
|