github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/internal/terraform/transform_provisioner.go (about)

     1  package terraform
     2  
     3  // GraphNodeProvisionerConsumer is an interface that nodes that require
     4  // a provisioner must implement. ProvisionedBy must return the names of the
     5  // provisioners to use.
     6  type GraphNodeProvisionerConsumer interface {
     7  	ProvisionedBy() []string
     8  }