PdfPrep.com

What is the result of the following terraform function call?

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

Exit mobile version