What is the result of the following terraform function call?
zipmap(["a", "b"], [1, 2])
zipmap constructs a map from a list of keys and a corresponding list of values. A map is denoted by { } whereas a list is donated by [ ].
https://www.terraform.io/docs/configuration/functions/zipmap.html
Currently there are no comments in this discussion, be the first to comment!