What is the result of the following terraform function call?

Posted by: Pdfprep Category: VA-002-P Tags: , ,

What is the result of the following terraform function call?

zipmap(["a", "b"], [1, 2])
A . {
"a",
"b",
"1",
"2",
}
B . [
"a",
"b",
"1",
"2",
]
C . {
"a" = 1
"b" = 2
}

D . [
"a" = 1
"b" = 2
]

Answer: C

Leave a Reply

Your email address will not be published.