Hi, can someone explain to me why Pulumi outputs a...
# general
b
Hi, can someone explain to me why Pulumi outputs are not updating correctly? In my go-program I used this line of code
ctx.Export("appPrivateIp", appServer.Ipv4AddressPrivate)
Than I noticed thats wrong, because I need the public IP. I changed it to this
ctx.Export("appPublicIP", appServer.Ipv4Address)
After running pulumi up I get the following output:
appPrivateIP foo.bar.what.ever
f
That shouldn't be a problem - could you double-check you saved your changes to the golang file? e.g. I've been known to forget to save my file in vscode 🤦