opentofu/internal/tofu/transform_local.go
namgyalangmo cb2e9119aa
Update copyright notice (#1232)
Signed-off-by: namgyalangmo <75657887+namgyalangmo@users.noreply.github.com>
2024-02-08 09:48:59 +00:00

48 lines
1.0 KiB
Go

// Copyright (c) The OpenTofu Authors
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) 2023 HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tofu
import (
"github.com/opentofu/opentofu/internal/addrs"
"github.com/opentofu/opentofu/internal/configs"
)
// LocalTransformer is a GraphTransformer that adds all the local values
// from the configuration to the graph.
type LocalTransformer struct {
Config *configs.Config
}
func (t *LocalTransformer) Transform(g *Graph) error {
return t.transformModule(g, t.Config)
}
func (t *LocalTransformer) transformModule(g *Graph, c *configs.Config) error {
if c == nil {
// Can't have any locals if there's no config
return nil
}
for _, local := range c.Module.Locals {
addr := addrs.LocalValue{Name: local.Name}
node := &nodeExpandLocal{
Addr: addr,
Module: c.Path,
Config: local,
}
g.Add(node)
}
// Also populate locals for child modules
for _, cc := range c.Children {
if err := t.transformModule(g, cc); err != nil {
return err
}
}
return nil
}