Posted by: Pdfprep
Post Date: February 19, 2021
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