github.com/cycloidio/terraform@v1.1.10-0.20220513142504-76d5c768dc63/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 }