45 lines
1.0 KiB
Go
45 lines
1.0 KiB
Go
package terraform
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform/config"
|
|
)
|
|
|
|
// NodeProvisioner represents a provider that has no associated operations.
|
|
// It registers all the common interfaces across operations for providers.
|
|
type NodeProvisioner struct {
|
|
NameValue string
|
|
PathValue []string
|
|
|
|
// The fields below will be automatically set using the Attach
|
|
// interfaces if you're running those transforms, but also be explicitly
|
|
// set if you already have that information.
|
|
|
|
Config *config.ProviderConfig
|
|
}
|
|
|
|
func (n *NodeProvisioner) Name() string {
|
|
result := fmt.Sprintf("provisioner.%s", n.NameValue)
|
|
if len(n.PathValue) > 1 {
|
|
result = fmt.Sprintf("%s.%s", modulePrefixStr(n.PathValue), result)
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
// GraphNodeSubPath
|
|
func (n *NodeProvisioner) Path() []string {
|
|
return n.PathValue
|
|
}
|
|
|
|
// GraphNodeProvisioner
|
|
func (n *NodeProvisioner) ProvisionerName() string {
|
|
return n.NameValue
|
|
}
|
|
|
|
// GraphNodeEvalable impl.
|
|
func (n *NodeProvisioner) EvalTree() EvalNode {
|
|
return &EvalInitProvisioner{Name: n.NameValue}
|
|
}
|