github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/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 }