You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Call UseJSONNumber() method wherever a terraform-jsonState or Plan struct is used within terraform-exec to force use of json.Number for ints
This is a breaking change, as it switches the returned terraform-json types from float64 to json.Number for number representation, so any tfexec consumer that goes deep enough into the plan or state to read a number value will have a compile error.
The text was updated successfully, but these errors were encountered:
UseJSONNumber
ShowOption
added in Add ShowOption for configuring JSON decoding #427UseJSONNumber()
method wherever aterraform-json
State
orPlan
struct is used within terraform-exec to force use ofjson.Number
for intsThis is a breaking change, as it switches the returned
terraform-json
types fromfloat64
tojson.Number
for number representation, so any tfexec consumer that goes deep enough into the plan or state to read a number value will have a compile error.The text was updated successfully, but these errors were encountered: