I created a pulumi stack and used ```ctx.Export("e...
# getting-started
a
I created a pulumi stack and used
Copy code
ctx.Export("elasticache", elasticacheURN)
in my code to export the URN. When i run the command
pulumi stack output
from my terminal, I see the expected output. My question is: How can I access these outputs from different pulumi stack programatically (I am using Go). I need this output to install service that needs the above output to work. Can anyone please help me get started? Thanks
p