mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
26ac58bc97
This is important so that the graph looks correct.
12 lines
280 B
Go
12 lines
280 B
Go
package terraform
|
|
|
|
// NodeApplyableProvider represents a provider during an apply.
|
|
type NodeApplyableProvider struct {
|
|
*NodeAbstractProvider
|
|
}
|
|
|
|
// GraphNodeEvalable
|
|
func (n *NodeApplyableProvider) EvalTree() EvalNode {
|
|
return ProviderEvalTree(n.NameValue, n.ProviderConfig())
|
|
}
|