github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/terraform/execute.go (about) 1 package terraform 2 3 import "github.com/muratcelep/terraform/not-internal/tfdiags" 4 5 // GraphNodeExecutable is the interface that graph nodes must implement to 6 // enable execution. 7 type GraphNodeExecutable interface { 8 Execute(EvalContext, walkOperation) tfdiags.Diagnostics 9 }