github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/not-internal/terraform/transform_attach_config_provider_meta.go (about) 1 package terraform 2 3 import ( 4 "github.com/muratcelep/terraform/not-internal/addrs" 5 "github.com/muratcelep/terraform/not-internal/configs" 6 ) 7 8 // GraphNodeAttachProviderMetaConfigs is an interface that must be implemented 9 // by nodes that want provider meta configurations attached. 10 type GraphNodeAttachProviderMetaConfigs interface { 11 GraphNodeConfigResource 12 13 // Sets the configuration 14 AttachProviderMetaConfigs(map[addrs.Provider]*configs.ProviderMeta) 15 }