gray-lawyer-89054
04/03/2020, 12:41 PMpulumi config set
command (for v1.14.0) when i tried to set value for structured configuration.
When I run:
pulumi config set --path key.prop "1002000"
Result is
proj:key:
prop: 1.002e+06
but for:
pulumi config set --path key.prop "100200"
proj:key:
prop: 100200
Some one encountered this issue? Independently from this bug it would be nice to force save as text because it impacts program flow.green-school-95910
04/03/2020, 12:52 PM--string
option to the command.
As a possible workaround, could you try piping the value in? Like echo "1002000" | pulumi config set --path key.prop
gray-lawyer-89054
04/03/2020, 1:11 PMAs a possible workaround, could you try piping the value in? LikeĀYes I tried. It behaves the sameecho "1002000" | pulumi config set --path key.prop
1002000
. Unfortunately I need string there. Only workaround I can see now is to make some ugly code which handles it.microscopic-pilot-97530