github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/execute.go (about) 1 package terraform 2 3 import "github.com/hashicorp/terraform/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 }