16 lines
429 B
Go
16 lines
429 B
Go
package terraform
|
|
|
|
import (
|
|
"github.com/hashicorp/terraform/addrs"
|
|
"github.com/hashicorp/terraform/configs"
|
|
)
|
|
|
|
// GraphNodeAttachProviderMetaConfigs is an interface that must be implemented
|
|
// by nodes that want provider meta configurations attached.
|
|
type GraphNodeAttachProviderMetaConfigs interface {
|
|
GraphNodeConfigResource
|
|
|
|
// Sets the configuration
|
|
AttachProviderMetaConfigs(map[addrs.Provider]*configs.ProviderMeta)
|
|
}
|