17 lines
439 B
Go
17 lines
439 B
Go
package terraform
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/addrs"
|
|
"github.com/hashicorp/terraform/configs"
|
|
)
|
|
|
|
// GraphNodeAttachProvider is an interface that must be implemented by nodes
|
|
// that want provider configurations attached.
|
|
type GraphNodeAttachProvider interface {
|
|
// ProviderName with no module prefix. Example: "aws".
|
|
ProviderAddr() addrs.AbsProviderConfig
|
|
|
|
// Sets the configuration
|
|
AttachProvider(*configs.Provider)
|
|
}
|