This message was deleted.
# general
s
This message was deleted.
g
you can export/output the bucket name from one stack and then "import" it using a StackReference in your downstream stack. https://pulumi.io/reference/organizing-stacks-projects.html#inter-stack-dependencies
this eliminates the need to manually pass values around. stacks and stackreferences are effectively your "registry".
h
woo! thanks! hadn’t found that reference, super helpful
👍 1
c
@helpful-ice-5738 you can also manually specify the name, which causes us to not append the random suffix. There are many downsides to this, though: you can’t create the same app twice (since you can’t multiply-instantiate the two resources of the same type with the same name), and if you need to replace it, we can’t spin up a new version of the resource (for the same reason).
👍 1
not sure if that makes sense
h
makes perfect sense @creamy-potato-29402