mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-24 20:01:17 -04:00
The map function assumed that the key arguments were strings, and would
panic if they were not.
After this commit, calling `map(1, 2)` will result in a map `{"1" = 1}`,
and calling `map(null, 1)` will result in a syntax error.
Fixes #23346, fixes #23043