asteris-llc/converge

View on GitHub
samples/paramJoin.hcl

Summary

Maintainability
Test Coverage
# an example of joining a list with newlines

param "items" {
  default = [1, 2, 3]
}

file.content "enumerated" {
  destination = "enumerated.txt"
  content     = "{{paramList `items` | join `\n`}}"
}