Terraform loops: Revision history

From wikinotes

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 September 2022

  • curprev 17:4917:49, 25 September 2022Will talk contribs 248 bytes +248 Created page with "<syntaxhighlight lang="tf"> [for s in var.list : upper(s)] # .map() list items [for k, v in var.map : length(k) + length(v)] # .map() mapping items [for s in var.list : upper(s) if s != ""] # .filter() items </syntaxhighlight>"