mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-19 01:00:39 -04:00
Recent changes to the human-readable rendering of outputs and console values led to long integer values being presented in scientific notation (e.g. 1.2345678e+07). While technically correct, this is an unusual way to present integer values. This commit changes the formatting mode to 'f', which never uses scientific notation and displays integer values as a sequence of digits instead (e.g. 12345678).