blob: 38e3a8ed714e00c1dc83b52ac145b962577941b5 [file] [log] [blame]
package terraform
// GraphNodeProvisionerConsumer is an interface that nodes that require
// a provisioner must implement. ProvisionedBy must return the names of the
// provisioners to use.
type GraphNodeProvisionerConsumer interface {
ProvisionedBy() []string
}