internal/meta/hcl_edit.go (54 lines of code) (raw):
package meta
import (
"fmt"
"strings"
"github.com/hashicorp/hcl/v2"
"github.com/hashicorp/hcl/v2/hclwrite"
)
// hclBlockAppendDependency adds the depends_on instructions in the given hcl body.
// cfgset is a map keyed by azure resource id.
func hclBlockAppendDependency(body *hclwrite.Body, deps []Dependency, cfgset map[string]ConfigInfo) error {
dependencies := []string{}
for _, dep := range deps {
if len(dep.Candidates) > 1 {
var candidateIds []string
for _, id := range dep.Candidates {
cfg := cfgset[id]
candidateIds = append(candidateIds, cfg.TFAddr.String())
}
dependencies = append(dependencies, fmt.Sprintf("# One of %s (can't auto-resolve as their ids are identical)", strings.Join(candidateIds, ",")))
continue
}
cfg := cfgset[dep.Candidates[0]]
dependencies = append(dependencies, cfg.TFAddr.String()+",")
}
if len(dependencies) > 0 {
src := []byte("depends_on = [\n" + strings.Join(dependencies, "\n") + "\n]")
expr, diags := hclwrite.ParseConfig(src, "f", hcl.InitialPos)
if diags.HasErrors() {
return fmt.Errorf(`building "depends_on" attribute: %s`, diags.Error())
}
body.SetAttributeRaw("depends_on", expr.Body().GetAttribute("depends_on").Expr().BuildTokens(nil))
}
return nil
}
func hclBlockAppendLifecycle(body *hclwrite.Body, ignoreChanges []string) error {
srcs := map[string][]byte{}
if len(ignoreChanges) > 0 {
for i := range ignoreChanges {
ignoreChanges[i] = ignoreChanges[i] + ","
}
srcs["ignore_changes"] = []byte("ignore_changes = [\n" + strings.Join(ignoreChanges, "\n") + "\n]\n")
}
if len(srcs) == 0 {
return nil
}
b := hclwrite.NewBlock("lifecycle", nil)
for name, src := range srcs {
expr, diags := hclwrite.ParseConfig(src, "f", hcl.InitialPos)
if diags.HasErrors() {
return fmt.Errorf(`building "lifecycle.%s" attribute: %s`, name, diags.Error())
}
b.Body().SetAttributeRaw(name, expr.Body().GetAttribute(name).Expr().BuildTokens(nil))
}
body.AppendBlock(b)
return nil
}