Skip to content

Commit

Permalink
Add post_plan to list of stages
Browse files Browse the repository at this point in the history
  • Loading branch information
glennsarti committed Mar 27, 2024
1 parent 9f99c79 commit b96d15a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions task_stages.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ type taskStages struct {
type Stage string

const (
PrePlan Stage = "pre_plan"
PostPlan Stage = "post_plan"
PreApply Stage = "pre_apply"
PrePlan Stage = "pre_plan"
PostPlan Stage = "post_plan"
PreApply Stage = "pre_apply"
PostApply Stage = "post_apply"
)

// TaskStageStatus is an enum that represents all possible statuses for a task stage
Expand Down

0 comments on commit b96d15a

Please sign in to comment.