github.com/pulumi/terraform@v1.4.0/pkg/terraform/execute.go (about)

     1  package terraform
     2  
     3  import "github.com/pulumi/terraform/pkg/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  }