Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Expand ¶
Expand "dynamic" blocks in the given body, returning a new body that has those blocks expanded.
The given EvalContext is used when evaluating "for_each" and "labels" attributes within dynamic blocks, allowing those expressions access to variables and functions beyond the iterator variable created by the iteration.
Expand returns no diagnostics because no blocks are actually expanded until a call to Content or PartialContent on the returned body, which will then expand only the blocks selected by the schema.
"dynamic" blocks are also expanded automatically within nested blocks in the given body, including within other dynamic blocks, thus allowing multi-dimensional iteration. However, it is not possible to dynamically-generate the "dynamic" blocks themselves except through nesting.
parent { dynamic "child" { for_each = child_objs content { dynamic "grandchild" { for_each = child.value.children labels = [grandchild.key] content { parent_key = child.key value = grandchild.value } } } } }
func ForEachVariablesHCLDec ¶
ForEachVariablesHCLDec is a wrapper around WalkForEachVariables that uses the given hcldec specification to automatically drive the recursive walk through nested blocks in the given body.
This provides more convenient access to all of the "for_each" and "labels" dependencies in a body for applications that are already using hcldec as a more convenient way to recursively decode body contents.
Types ¶
type WalkVariablesChild ¶
type WalkVariablesChild struct { BlockTypeName string Node WalkVariablesNode }
type WalkVariablesNode ¶
type WalkVariablesNode struct {
// contains filtered or unexported fields
}
func WalkForEachVariables ¶
func WalkForEachVariables(body hcl.Body) WalkVariablesNode
WalkVariables begins the recursive process of walking the variables in the given body that are needed by any "for_each" or "labels" attributes in "dynamic" blocks. The result is a WalkVariablesNode, which can extract root-level variable traversals and produce a list of child nodes that also need to be processed by calling Visit.
This function requires that the caller walk through the nested block structure in the given body level-by-level so that an appropriate schema can be provided at each level to inform further processing. This workflow is thus easiest to use for calling applications that have some higher-level schema representation available with which to drive this multi-step process.
func (WalkVariablesNode) Visit ¶
func (n WalkVariablesNode) Visit(schema *hcl.BodySchema) (vars []hcl.Traversal, children []WalkVariablesChild)
Visit returns the variable traversals required for any "dynamic" blocks directly in the body associated with this node, and also returns any child nodes that must be visited in order to continue the walk.
Each child node has its associated block type name given in its BlockTypeName field, which the calling application should use to determine the appropriate schema for the content of each child node and pass it to the child node's own Visit method to continue the walk recursively.