This message was deleted.
# general
s
This message was deleted.
b
Hi @lemon-machine-35564 I wrote this set of projects that pass values between themselves - https://github.com/pulumi/examples/tree/master/aws-stackreference-architecture
using StackReferenes
b
@lemon-machine-35564 why are you converting the output to a string? are you passing it to another resource that only takes a string for example?
l
Thanks Paul! Looking through this.
@billowy-army-68599 exactly. I have an output in another project/stack that is
<http://example.com|example.com>
I want to bring that into a different project and set a DNS entry using that value.
And also look up a Route 53 Hosted Zone using it as well
b
how are you setting the DNS entry? can you share any code you might have? stack outputs are standard pulumi outputs, so you should be able to pass them to a resource - you shouldn't have to convert them to a string at all
l
Definitely, one sec
name
on
getZone
wants a string
b
ah, you'll need to use an
apply()
here, I'll try put an example together when i get chance