mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-11 16:15:33 -06:00
17 lines
300 B
Go
17 lines
300 B
Go
|
package terraform
|
||
|
|
||
|
//go:generate stringer -type=walkOperation graph_walk_operation.go
|
||
|
|
||
|
// walkOperation is an enum which tells the walkContext what to do.
|
||
|
type walkOperation byte
|
||
|
|
||
|
const (
|
||
|
walkInvalid walkOperation = iota
|
||
|
walkInput
|
||
|
walkApply
|
||
|
walkPlan
|
||
|
walkPlanDestroy
|
||
|
walkRefresh
|
||
|
walkValidate
|
||
|
)
|