In both Python and Golang, the exports are program...
# typescript
d
In both Python and Golang, the exports are programmatic - eg, in Python, you call
pulumi.export('public_ip', server.public_ip)
. For
<reasons>
, I could do with doing a similar sort of thing in TypeScript - is there any way of getting TS to create outputs with a pulumi method rather than the
export const public_ip = server.public_up
?
f
In case others on Slack are following, depending on what you’re trying to do, I updated the issue you created with an example that might help https://github.com/pulumi/pulumi/issues/4528