Hello. Let's say I have a value in my config file ...
# general
b
Hello. Let's say I have a value in my config file that is a string. For example:
Copy code
vpn:router_to_hq_1_bgp_asn: "65509"
I want to change it's value to be an integer. However, when I set it 
pulumi config set vpn:router_to_hq_1_bgp_asn 65509
 it still get written to the Pulumi's yaml config file as a string. Even when I change it manually via an editor (remove quotes), after issuing 
pulumi up
 it reverts it to a string. Is there a way I can specifically set a config's value type to integer? I know that I can cast its type via code, but I just want to understand if it is possible.